Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the GetMyInvoices in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
Retrieve invoices, documents, attachments and suppliers with AI agents via MCP. GetMyInvoices is a German invoice & document management platform that auto-collects receipts from thousands of portals.
Try asking
Example prompts for GetMyInvoices
Click any prompt to copy it. Paste into Claude, ChatGPT, Cursor, Gemini, Copilot or OpenClaw to run it against this connector.
Claude is AI and can make mistakes. Please double-check responses.
GetMyInvoices Document Management with AI Agents
GetMyInvoices (by fino data services GmbH, Kassel) automatically collects invoices and documents from thousands of online portals and mailboxes. By connecting its v3 REST API to MCP, AI agents can search documents, read invoice metadata and OCR text, download files, and list suppliers.
Quick Setup
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Or use AnythingMCP Cloud for instant setup without Docker.
Open http://localhost:3000/connectors/store, import the GetMyInvoices adapter, and enter your API key.
{
"mcpServers": {
"getmyinvoices": { "url": "http://localhost:4000/mcp" }
}
}
Get Your GetMyInvoices API Key
In the GetMyInvoices web app, open the top-right menu and choose API access to generate a key. The connector sends it in the X-API-KEY header.
Available Tools
| Tool | Description |
|---|---|
getmyinvoices_list_documents | List documents (invoices, receipts, credit notes) with type, date and payment filters |
getmyinvoices_get_document | Get a document with metadata, line items, OCR text and optional file content |
getmyinvoices_list_document_attachments | List attachments linked to a document |
getmyinvoices_get_document_attachment | Get a single attachment with its file content |
getmyinvoices_list_companies | List companies (suppliers and online portals) |
getmyinvoices_get_company | Get a single supplier/portal with its details |
Use Cases
- "List all incoming invoices from the last quarter that are still unpaid"
- "Download the file for document 12345"
- "Which suppliers are configured in my account?"
- "Show every document modified since June 1st"
Was this guide helpful?