Skip to main content
Glama

Orion Vision MCP Server

Orion Vision MCP 服务器🚀

🔌与 Cline、Cursor、Claude Desktop 和任何其他 MCP 客户端兼容!

Orion Vision MCP 还兼容任何 MCP 客户端

模型上下文协议 (MCP) 是一种开放标准,使 AI 系统能够与各种数据源和工具无缝交互,促进安全的双向连接。

Orion Vision MCP 服务器提供:

  • 与 Azure 表单识别器/文档智能无缝集成
  • 文档分析和表单数据提取功能
  • 支持各种文件类型(收据、发票、身份证件等)
  • 使用 TypeScript 进行类型安全操作

先决条件🔧

在开始之前,请确保您已:

  • Azure 表单识别器/文档智能端点和密钥
  • Claude Desktop 或 Cursor
  • Node.js(v20 或更高版本)
  • 已安装 Git(仅在使用 Git 安装方法时才需要)

Orion Vision MCP 服务器安装⚡

使用 NPX 运行

npx -y orion-vision-mcp@latest

通过 Smithery 安装

要通过 Smithery 自动为 Claude Desktop 安装 Orion Vision MCP Server:

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

配置 MCP 客户端 ⚙️

配置 Cline 🤖

在 Cline 中设置 Orion Vision MCP 服务器的最简单方法是通过市场单击一下:

  1. 在 VS Code 中打开 Cline
  2. 点击侧边栏中的 Cline 图标
  3. 导航到“MCP 服务器”选项卡(4 个方块)
  4. 搜索“Orion Vision”并点击“安装”
  5. 出现提示时,输入 Azure 表单识别器凭据

或者,您可以在 Cline 中手动设置 Orion Vision MCP 服务器:

  1. 打开 Cline MCP 设置文件:
# 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. 将 Orion Vision 服务器配置添加到文件中:
{ "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. 如果 Cline 已运行,请保存文件并重新启动它。

配置光标🖥️

注意:需要 Cursor 版本 0.45.6 或更高版本

要在 Cursor 中设置 Orion Vision MCP 服务器:

  1. 打开游标设置
  2. 导航至“功能”>“MCP 服务器”
  3. 点击“+ 添加新的 MCP 服务器”按钮
  4. 填写以下信息:
    • 名称:输入服务器的昵称(例如,“orion-vision-mcp”)
    • 类型:选择“命令”作为类型
    • 命令:输入运行服务器的命令:GXP5

      重要提示:用 Azure 表单识别器凭据替换your-endpointyour-key

配置 Claude 桌面应用程序🖥️

对于 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"
对于 Windows:
code %APPDATA%\Claude\claude_desktop_config.json
添加 Orion Vision 服务器配置:
{ "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" } } } }

在 Claude 桌面应用程序中的使用

安装完成并配置好 Claude 桌面应用程序后,您必须完全关闭并重新打开 Claude 桌面应用程序才能看到 orion-vision-mcp 服务器。您应该会在应用程序左下角看到一个锤子图标,表示可用的 MCP 工具。

Orion Vision 示例

  1. 分析文档
Analyze the document at "https://example.com/document.pdf" using Azure Form Recognizer.
  1. 提取表单数据
Extract data from the invoice at "https://example.com/invoice.pdf".
  1. 进程 ID 文件
Process the ID document at "https://example.com/id.pdf" and extract relevant information.

故障排除🛠️

常见问题

  1. 未找到服务器
    • 通过运行npm --version来验证 npm 安装
    • 检查 Claude Desktop 配置语法
    • 通过运行node --version确保正确安装了 Node.js
  2. Azure 表单识别器凭据问题
    • 确认 Azure 表单识别器端点和密钥有效
    • 检查配置中的凭据是否正确设置
    • 验证凭证周围没有空格或引号
  3. 文档处理问题
    • 验证文档 URL 是否可访问
    • 检查文档格式是否受支持
    • 确保文档未损坏或未受密码保护

致谢✨

  • MCP 规范的模型上下文协议
  • 克劳德桌面版的 Anthropic
  • Microsoft Azure 用于表单识别器/文档智能
Deploy Server
A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

通过 Azure 表单识别器/文档智能,使 AI 系统能够分析文档并提取表单数据,支持包括收据、发票和身份证件在内的各种文档类型。

  1. 先决条件🔧
    1. Orion Vision MCP 服务器安装⚡
      1. 使用 NPX 运行
      2. 通过 Smithery 安装
    2. 配置 MCP 客户端 ⚙️
      1. 配置 Cline 🤖
      2. 配置光标🖥️
      3. 配置 Claude 桌面应用程序🖥️
    3. 在 Claude 桌面应用程序中的使用
      1. Orion Vision 示例
    4. 故障排除🛠️
      1. 常见问题
    5. 致谢✨

      Related MCP Servers

      • A
        security
        A
        license
        A
        quality
        AI assistants to query and analyze Azure Data Explorer databases through standardized interfaces.
        Last updated -
        4
        48
        MIT License
        • Linux
        • Apple
      • A
        security
        F
        license
        A
        quality
        Enables AI systems to perform full-text and semantic search operations over structured/unstructured data in Azure Cognitive Search, with capabilities for document indexing and management through natural language.
        Last updated -
        3
        25
        3
        • Apple
      • -
        security
        A
        license
        -
        quality
        A comprehensive server that enables AI applications to interact with Microsoft 365 and Azure AD services through standardized Model Context Protocol interfaces.
        Last updated -
        1
        MIT License
      • -
        security
        F
        license
        -
        quality
        Enables reading and processing various document formats including Word, PDF, RTF, and text files. Supports extracting media elements like images and links, with features for PDF page range selection and automatic text encoding detection.
        Last updated -
        2

      View all related MCP servers

      MCP directory API

      We provide all the information about MCP servers via our MCP API.

      curl -X GET 'https://glama.ai/api/mcp/v1/servers/Cognitive-Stack/orion-vision-mcp'

      If you have feedback or need assistance with the MCP directory API, please join our Discord server