Skip to main content
Glama

Aucterra MCP Server

by japisuru
MIT License

Aucterra MCP-Server

Dieses Repository konfiguriert mithilfe des Pakets aucterra-mcp einen MCP-kompatiblen Server für die Document Understanding APIs von Aucterra.

Es ermöglicht LLM-Agenten, mithilfe des Agent Development Kit (ADK) von Google mit den Diensten zur Dokumentklassifizierung, -extraktion usw. von Aucterra zu interagieren.

🔧 Konfiguration

Fügen Sie diesen Block in Ihre mcpServers -Konfiguration ein (z. B. config.json oder 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" } } } }

🔐 Erforderliche Umgebungsvariablen

VariableBeschreibung
AUCTERRA_API_KEYIhr API-Schlüssel für den Zugriff auf die Dienste von Aucterra

⚙️ Werkzeugverhalten

Dieses MCP-Tool bietet strukturierten Zugriff auf Aucterra:

  • 📁 Dokumentenklassifizierung
  • 🗂️ Schlüssel-Wert-Feldextraktion (einfache + Listenfelder)

Das Tool akzeptiert pdf oder image und gibt strukturierte JSON-Ausgabe zurück.

✅ Agentenintegration (Google ADK)

Um dieses Tool in Ihrem LlmAgent zu verwenden, konfigurieren Sie es wie folgt:

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"} ) )

Fügen Sie dieses Tool über tools=[aucterra_tool] zu Ihrem Agenten hinzu.

📚 Beispiel-Anwendungsfälle

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).

Der Agent verwendet den Aucterra MCP-Server, um Felder zu extrahieren und fehlende Werte auszufüllen (z. B. indem er denselben Wert für field_key und field_name verwendet, wenn nur einer angegeben ist).

📦 Abhängigkeiten

Stellen Sie sicher, dass pipx auf Ihrem System installiert und verfügbar ist.
Installieren Sie es über:

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

🛠️ Probleme

Wenn Probleme auftreten, stellen Sie sicher, dass Ihr API-Schlüssel korrekt und das Tool auf dem neuesten Stand ist:

pipx upgrade aucterra-mcp

🔗 Ähnliche Projekte

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

Ein MCP-kompatibler Server, der LLM-Agenten die Interaktion mit den Dokumentverständnis-APIs von Aucterra ermöglicht und strukturierten Zugriff auf Dienste zur Dokumentklassifizierung und Feldextraktion bietet.

  1. 🔧 Konfiguration
    1. 🔐 Erforderliche Umgebungsvariablen
  2. ⚙️ Werkzeugverhalten
    1. ✅ Agentenintegration (Google ADK)
      1. 📚 Beispiel-Anwendungsfälle
        1. 📦 Abhängigkeiten
          1. 🛠️ Probleme
            1. 🔗 Ähnliche Projekte

              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