Skip to main content
Glama

Aucterra MCP Server

by japisuru
MIT License

Aucterra MCP 服务器

该存储库使用aucterra-mcp包为 Aucterra 的文档理解 API 配置一个与 MCP 兼容的服务器。

它使 LLM 代理能够使用Google 的代理开发工具包 (ADK)与 Aucterra 的文档分类、提取等服务进行交互。

🔧 配置

将此块包含在您的mcpServers配置中(例如config.jsonmcp.yaml ):

{ "mcpServers": { "aucterra": { "command": "pipx", "args": [ "run", "--spec", "git+https://github.com/japisuru/aucterra-mcp", "aucterra-mcp" ], "env": { "AUCTERRA_API_KEY": "your_api_key_here" } } } }

🔐 必需的环境变量

多变的描述
AUCTERRA_API_KEY用于访问 Aucterra 服务的 API 密钥

⚙️ 工具行为

此 MCP 工具提供对 Aucterra 的结构化访问:

  • 📁 文档分类
  • 🗂️ 键值字段提取(简单 + 列表字段)

该工具接受pdfimage文件并返回结构化的 JSON 输出。

✅ 代理集成 (Google ADK)

要在LlmAgent中使用此工具,请按如下方式配置它:

from google.adk.tools.mcp_tool.mcp_toolset import MCPToolset, StdioServerParameters aucterra_tool = MCPToolset( connection_params=StdioServerParameters( command="pipx", args=[ "run", "--spec", "git+https://github.com/japisuru/aucterra-mcp", "aucterra-mcp" ], env={"AUCTERRA_API_KEY": "your_api_key_here"} ) )

通过tools=[aucterra_tool]将此工具添加到您的代理。

📚 示例用例

User: Classify this document (/path/to/the/document/doc.pdf) into invoice or identity document. User: Extract the following fields: NIC, Full Name, Date of Birth from this document (/path/to/the/document/doc.pdf) User: Extract Tax ID as 'Tax Identification Number' from this document (/path/to/the/document/doc.pdf).

代理将使用 Aucterra MCP 服务器提取字段,填充缺失值(例如,如果仅提供一个,则对field_keyfield_name使用相同的值)。

📦依赖项

确保您的系统上已安装并可用pipx
通过以下方式安装:

python3 -m pip install --user pipx python3 -m pipx ensurepath

🛠️ 问题

如果遇到问题,请确保您的 API 密钥正确且工具是最新的:

pipx upgrade aucterra-mcp

🔗 相关项目

-
security - not tested
A
license - permissive license
-
quality - not tested

与 MCP 兼容的服务器使 LLM 代理能够与 Aucterra 的文档理解 API 进行交互,从而提供对文档分类和字段提取服务的结构化访问。

  1. 🔧 配置
    1. 🔐 必需的环境变量
  2. ⚙️ 工具行为
    1. ✅ 代理集成 (Google ADK)
      1. 📚 示例用例
        1. 📦依赖项
          1. 🛠️ 问题
            1. 🔗 相关项目

              Related MCP Servers

              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol (MCP) server that enables LLMs to interact directly the documents that they have on-disk through agentic RAG and hybrid search in LanceDB. Ask LLMs questions about the dataset as a whole or about specific documents.
                Last updated -
                12
                31
                TypeScript
                MIT License
                • Apple
              • -
                security
                A
                license
                -
                quality
                An MCP server that provides tools to load and fetch documentation from any llms.txt source, giving users full control over context retrieval for LLMs in IDE agents and applications.
                Last updated -
                177
                Python
                MIT License
                • Apple
              • -
                security
                F
                license
                -
                quality
                An MCP server that integrates with Claude to provide smart documentation search capabilities across multiple AI/ML libraries, allowing users to retrieve and process technical information through natural language queries.
                Last updated -
                Python
              • -
                security
                F
                license
                -
                quality
                An MCP server that fetches real-time documentation for popular libraries like Langchain, Llama-Index, MCP, and OpenAI, allowing LLMs to access updated library information beyond their knowledge cut-off dates.
                Last updated -
                Python

              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/japisuru/aucterra-mcp'

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