AgentHubAgentHub

Suparse Document Processing

MCP ServerMCP Registry官方收录

io.github.suparse/suparse-mcp · v1.3.0

Extract structured data from PDFs and documents with Suparse AI OCR.

概览

Suparse Document Processing 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "suparse-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@suparse/mcp"
      ],
      "env": {
        "SUPARSE_API_KEY": "<SUPARSE_API_KEY>"
      }
    }
  }
}

环境变量

SUPARSE_API_KEY必填secret

Suparse API key used to authenticate requests.

SUPARSE_API_URL可选

Optional Suparse API base URL override.

相关资源

统一 Manifest

{
  "id": "io.github.suparse/suparse-mcp",
  "type": "mcp-server",
  "version": "1.3.0",
  "displayName": "Suparse Document Processing",
  "description": "Extract structured data from PDFs and documents with Suparse AI OCR.",
  "repository": {
    "url": "https://github.com/suparse/suparse-mcp",
    "source": "github"
  },
  "homepage": "https://www.suparse.com",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@suparse/mcp",
        "version": "1.3.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "SUPARSE_API_KEY",
            "description": "Suparse API key used to authenticate requests.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "SUPARSE_API_URL",
            "description": "Optional Suparse API base URL override."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.suparse/suparse-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.suparse%2Fsuparse-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Suparse Document Processing — MCP Server 安装与配置 · AgentHub