Skip to main content
Glama

Aucterra MCP Server

by japisuru

Aucterra MCP 서버

이 저장소는 aucterra-mcp 패키지를 사용하여 Aucterra의 문서 이해 API에 대한 MCP 호환 서버를 구성합니다.

Google의 에이전트 개발 키트(ADK)를 사용하여 LLM 에이전트가 Aucterra의 문서 분류, 추출 등의 서비스와 상호 작용할 수 있도록 합니다.

🔧 구성

mcpServers 구성에 이 블록을 포함합니다(예: config.json 또는 mcp.yaml ):

지엑스피1

🔐 필수 환경 변수

변하기 쉬운설명
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 이 하나만 제공된 경우 두 값에 동일한 값을 사용).

📦 종속성

시스템에 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

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.

LLM 에이전트가 Aucterra의 문서 이해 API와 상호 작용할 수 있도록 하는 MCP 호환 서버로, 문서 분류 및 필드 추출 서비스에 대한 체계적인 액세스를 제공합니다.

  1. 🔧 구성
    1. 🔐 필수 환경 변수
  2. ⚙️ 도구 동작
    1. ✅ 에이전트 통합(Google ADK)
      1. 📚 예시 사용 사례
        1. 📦 종속성
          1. 🛠️ 문제
            1. 🔗 관련 프로젝트

              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