Skip to main content
Glama

Aucterra MCP Server

by japisuru

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

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

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
                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 -
                578
                Python
                MIT License
                • Apple
              • -
                security
                A
                license
                -
                quality
                An open-source MCP server that provides applications like Cursor, Windsurf, and Claude with access to llms.txt documentation files, allowing users to control and audit context retrieval.
                Last updated -
                8
                Python
                MIT License
                • Apple
                • Linux
              • -
                security
                F
                license
                -
                quality
                A customized MCP server that enables integration between LLM applications and documentation sources, providing AI-assisted access to LangGraph and Model Context Protocol documentation.
                Last updated -
                1
                Python
                • Linux
                • Apple
              • A
                security
                F
                license
                A
                quality
                A lightweight MCP server that provides a unified interface to various LLM providers including OpenAI, Anthropic, Google Gemini, Groq, DeepSeek, and Ollama.
                Last updated -
                6
                580
                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