🔌 兼容Cline、Cursor、Claude Desktop及任何其他MCP客户端!
Orion Vision MCP也兼容任何MCP客户端。
模型上下文协议(MCP)是一个开放标准,使AI系统能够无缝地与各种数据源和工具交互,促进安全的双向连接。
Orion Vision MCP服务器提供:
在开始之前,请确保您拥有:
npx -y orion-vision-mcp@latest
要通过Smithery自动安装Orion Vision MCP服务器到Claude Desktop:
npx -y @smithery/cli install @orion-vision/mcp --client claude
在Cline中设置Orion Vision MCP服务器最简单的方法是通过市场单击安装:
或者,您也可以手动在Cline中设置Orion Vision MCP服务器:
# 对于macOS:
code ~/Library/Application\ Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
# 对于Windows:
code %APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_m_设置.json
{
"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": []
}
}
}
注意:需要Cursor版本0.45.6或更高
要在Cursor中设置Orion Vision MCP服务器:
env AZURE_FORM_RECOGNIZER_ENDPOINT=your-endpoint AZURE_FORM_RECOGNIZER_KEY=your-key npx -y orion-vision-mcp@latest
重要:用您的Azure Form Recognizer凭据替换
your-endpoint和your-key
# 如果不存在,则创建配置文件
touch "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# 在TextEdit中打开配置文件
open -e "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
code %APPDATA%\Claude\claude_desktop_config.json
{
"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桌面应用程序以查看orion-vision-mcp服务器。您应该看到应用程序左下角有一个锤子图标,表示可用的MCP工具。
使用Azure Form Recognizer分析位于"https://example.com/document.pdf"的文档。
从位于"https://example.com/invoice.pdf"的发票中提取数据。
处理位于"https://example.com/id.pdf"的身份证明文件并提取相关信息。
找不到服务器
npm --version验证npm安装node --version确保Node.js已正确安装Azure Form Recognizer凭据问题
文档处理问题