Skip to main content
Glama

Aucterra MCP Server

by japisuru
MIT License

Aucterra MCP サーバー

このリポジトリは、aucterra-mcpパッケージを使用して、Aucterra の Document Understanding API 用の MCP 互換サーバーを構成します。

これにより、LLM エージェントは、Google のエージェント開発キット (ADK)を使用して、Aucterra のドキュメント分類、抽出などのサービスと対話できるようになります。

🔧 構成

このブロックをmcpServers構成 (例: config.jsonまたはmcp.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_KEYAucterraのサービスにアクセスするためのAPIキー

⚙️ ツールの動作

この MCP ツールは、Aucterra の次のものへの構造化されたアクセスを提供します。

  • 📁 ドキュメント分類
  • 🗂️ キー値フィールド抽出(シンプル + リストフィールド)

このツールはpdfまたはimageファイルを受け入れ、構造化された 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が 1 つしか指定されていない場合は、同じ値を使用します)。

📦 依存関係

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

LLM エージェントが Aucterra のドキュメント理解 API と対話できるようにし、ドキュメント分類およびフィールド抽出サービスへの構造化されたアクセスを提供する MCP 互換サーバー。

  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