ai-ml

Orion Vision (Azure Form Recognizer)

by cognitive-stack

Automate document workflows with Orion Vision and Azure Form Recognizer for intelligent document processing and assembly

Integrates with Azure Form Recognizer to extract structured data from documents including receipts, invoices, ID documents, and business cards for automated document processing workflows.

github stars

2

Works with multiple MCP clientsTypeScript type safetyOne-click Cline marketplace install

best for

  • / Businesses automating invoice processing
  • / Developers building document workflows
  • / Companies digitizing paper records
  • / Applications requiring form data extraction

capabilities

  • / Extract data from receipts and invoices
  • / Process ID documents and business cards
  • / Analyze various document formats
  • / Convert unstructured documents to structured data
  • / Integrate with Azure Document Intelligence

what it does

Extracts structured data from documents like receipts, invoices, and ID cards using Azure Form Recognizer. Automates document processing by converting images and PDFs into structured data.

about

Orion Vision (Azure Form Recognizer) is a community-built MCP server published by cognitive-stack that provides AI assistants with tools and capabilities via the Model Context Protocol. Automate document workflows with Orion Vision and Azure Form Recognizer for intelligent document processing and assembly It is categorized under ai ml.

how to install

You can install Orion Vision (Azure Form Recognizer) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

Orion Vision (Azure Form Recognizer) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

readme

Orion Vision MCP Server 🚀

🔌 Compatible with Cline, Cursor, Claude Desktop, and any other MCP Clients!

Orion Vision MCP is also compatible with any MCP client

The Model Context Protocol (MCP) is an open standard that enables AI systems to interact seamlessly with various data sources and tools, facilitating secure, two-way connections.

The Orion Vision MCP server provides:

  • Seamless integration with Azure Form Recognizer / Document Intelligence
  • Document analysis and form data extraction capabilities
  • Support for various document types (receipts, invoices, ID documents, etc.)
  • Type-safe operations with TypeScript

Prerequisites 🔧

Before you begin, ensure you have:

  • Azure Form Recognizer / Document Intelligence endpoint and key
  • Claude Desktop or Cursor
  • Node.js (v20 or higher)
  • Git installed (only needed if using Git installation method)

Orion Vision MCP server installation ⚡

Running with NPX

npx -y orion-vision-mcp@latest

Installing via Smithery

To install Orion Vision MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @orion-vision/mcp --client claude

Configuring MCP Clients ⚙️

Configuring Cline 🤖

The easiest way to set up the Orion Vision MCP server in Cline is through the marketplace with a single click:

  1. Open Cline in VS Code
  2. Click on the Cline icon in the sidebar
  3. Navigate to the "MCP Servers" tab (4 squares)
  4. Search "Orion Vision" and click "install"
  5. When prompted, enter your Azure Form Recognizer credentials

Alternatively, you can manually set up the Orion Vision MCP server in Cline:

  1. Open the Cline MCP settings file:
# For macOS:
code ~/Library/Application\ Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json

# For Windows:
code %APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
  1. Add the Orion Vision server configuration to the file:
{
  "mcpServers": {
    "orion-vision-mcp": {
      "command": "npx",
      "args": ["-y", "orion-vision-mcp@latest"],
      "env": {
        "AZURE_FORM_RECOGNIZER_ENDPOINT": "your-endpoint-here",
        "AZURE_FORM_RECOGNIZER_KEY": "your-key-here"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}
  1. Save the file and restart Cline if it's already running.

Configuring Cursor 🖥️

Note: Requires Cursor version 0.45.6 or higher

To set up the Orion Vision MCP server in Cursor:

  1. Open Cursor Settings
  2. Navigate to Features > MCP Servers
  3. Click on the "+ Add New MCP Server" button
  4. Fill out the following information:
    • Name: Enter a nickname for the server (e.g., "orion-vision-mcp")
    • Type: Select "command" as the type
    • Command: Enter the command to run the server:
    env AZURE_FORM_RECOGNIZER_ENDPOINT=your-endpoint AZURE_FORM_RECOGNIZER_KEY=your-key npx -y orion-vision-mcp@latest
    

    Important: Replace your-endpoint and your-key with your Azure Form Recognizer credentials

Configuring the Claude Desktop app 🖥️

For macOS:

# Create the config file if it doesn't exist
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"

# Opens the config file in TextEdit
open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json"

For Windows:

code %APPDATA%\Claude\claude_desktop_config.json

Add the Orion Vision server configuration:

{
  "mcpServers": {
    "orion-vision-mcp": {
      "command": "npx",
      "args": ["-y", "orion-vision-mcp@latest"],
      "env": {
        "AZURE_FORM_RECOGNIZER_ENDPOINT": "your-endpoint-here",
        "AZURE_FORM_RECOGNIZER_KEY": "your-key-here"
      }
    }
  }
}

Usage in Claude Desktop App 🎯

Once the installation is complete, and the Claude desktop app is configured, you must completely close and re-open the Claude desktop app to see the orion-vision-mcp server. You should see a hammer icon in the bottom left of the app, indicating available MCP tools.

Orion Vision Examples

  1. Analyze a Document:
Analyze the document at "https://example.com/document.pdf" using Azure Form Recognizer.
  1. Extract Form Data:
Extract data from the invoice at "https://example.com/invoice.pdf".
  1. Process ID Document:
Process the ID document at "https://example.com/id.pdf" and extract relevant information.

Troubleshooting 🛠️

Common Issues

  1. Server Not Found

    • Verify the npm installation by running npm --version
    • Check Claude Desktop configuration syntax
    • Ensure Node.js is properly installed by running node --version
  2. Azure Form Recognizer Credentials Issues

    • Confirm your Azure Form Recognizer endpoint and key are valid
    • Check the credentials are correctly set in the config
    • Verify no spaces or quotes around the credentials
  3. Document Processing Issues

    • Verify the document URL is accessible
    • Check the document format is supported
    • Ensure the document is not corrupted or password-protected

Acknowledgments ✨

  • Model Context Protocol for the MCP specification
  • Anthropic for Claude Desktop
  • Microsoft Azure for Form Recognizer / Document Intelligence

FAQ

What is the Orion Vision (Azure Form Recognizer) MCP server?
Orion Vision (Azure Form Recognizer) is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Orion Vision (Azure Form Recognizer)?
This profile displays 10 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
MCP server reviews

Ratings

4.510 reviews
  • Shikha Mishra· Oct 10, 2024

    Orion Vision (Azure Form Recognizer) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Piyush G· Sep 9, 2024

    We evaluated Orion Vision (Azure Form Recognizer) against two servers with overlapping tools; this profile had the clearer scope statement.

  • Chaitanya Patil· Aug 8, 2024

    Useful MCP listing: Orion Vision (Azure Form Recognizer) is the kind of server we cite when onboarding engineers to host + tool permissions.

  • Sakshi Patil· Jul 7, 2024

    Orion Vision (Azure Form Recognizer) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Ganesh Mohane· Jun 6, 2024

    I recommend Orion Vision (Azure Form Recognizer) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Oshnikdeep· May 5, 2024

    Strong directory entry: Orion Vision (Azure Form Recognizer) surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Dhruvi Jain· Apr 4, 2024

    Orion Vision (Azure Form Recognizer) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Rahul Santra· Mar 3, 2024

    According to our notes, Orion Vision (Azure Form Recognizer) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Pratham Ware· Feb 2, 2024

    We wired Orion Vision (Azure Form Recognizer) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Yash Thakker· Jan 1, 2024

    Orion Vision (Azure Form Recognizer) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.