189 connectors + any REST/SOAP/GraphQL/SQL as MCP tools for Claude & ChatGPT. Self-hosted, AGPL.
10K+
Give Claude, ChatGPT and Copilot safe access to the software your company already runs.
189 ready adapters, any REST/SOAP/GraphQL/SQL system without code, on your own infrastructure — and it learns how your systems connect.
Claude answering a question no chatbot could answer, because the data lives in a field-service system that speaks REST, not MCP:
Run it yourself — three lines, no clone, details below:
mkdir anythingmcp && cd anythingmcp
curl -fsSLo docker-compose.yml \
https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d # → http://localhost:3000
Three words appear throughout and mean three different things:
Everything runs on your infrastructure, so you decide what leaves it. Per-tool response mapping declares which fields ever reach the model; credentials are AES-256-GCM at rest; the audit log keeps the full upstream response on your side. OAuth2, RBAC, SSO and SCIM are in the self-hosted build, not held back for a paid tier.
In production at KOCH Freiburg GmbH, where it connects AI assistants to 15+ internal systems — ERP, CRM, SOAP services and on-prem databases. AnythingMCP was extracted from that system by helpcode.ai in Freiburg, Germany, and open-sourced because an adapter catalog grows faster as a community than as a product.
The recommended path, and the one measured below. Requires Docker 24+ and openssl; on macOS, start Docker Desktop first.
mkdir anythingmcp && cd anythingmcp
curl -fsSLo docker-compose.yml \
https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Open http://localhost:3000 and register — the first account becomes admin.
Keep the generated
.env.ENCRYPTION_KEYis what decrypts the credentials you store. Lose it and every connector has to be re-credentialed; back it up wherever you keep your other secrets.
| Service | Default URL |
|---|---|
| Web UI | http://localhost:3000 |
| MCP endpoint | http://localhost:4000/mcp |
| Swagger docs | http://localhost:4000/api/docs |
Measured on amd64: 31 s to pull the image, 24 s to a healthy API and a login page. The published image is amd64 only for now — the compose file pins the platform so it also runs on Apple Silicon under Docker Desktop's emulation, where the same boot took 24 s on an M-series laptop but can take a few minutes on older hardware.
The quickstart binds to 127.0.0.1 on purpose: nothing in front of it terminates TLS. For an instance other people or a cloud AI client can reach, clone the repo and run ./setup.sh — it asks for a domain, gets certificates through Caddy, generates the secrets and sets the MCP auth mode. See the Deployment Guide.
AnythingMCP Cloud is the same AGPL code, operated by us in Frankfurt, Germany. Start there to see it work on your own APIs without provisioning anything, and move it in-house when you want the credentials to stop travelling — the connectors are the same either way. DPA/AVV on request via [email protected]. SSO and SCIM are self-hosted only.
{{VAR}} interpolation, hidden from the AI.readOnlyHint, destructiveHint), derived from the operation and overridable per tool, so a client can show the difference between reading an invoice and issuing a credit note. Role-based tool whitelisting lets you publish an MCP server that can only read — which is how most people should start with an ERP.The projects it gets compared with are mostly MCP gateways: they federate, scope and secure MCP servers you already have. AnythingMCP starts one step earlier, because most companies have no MCP servers at all — they have a REST API, a SOAP service from 2009 and a database nobody wants to expose. Every project below solves a real problem; they just don't solve the same one.
| What it is | Choose it instead if… | |
|---|---|---|
| ContextForge (IBM) | Federation and a registry in front of MCP servers you already have | Your tools are already MCP servers and what you need is federation, virtual servers and a registry |
| Docker MCP Gateway | Runs catalog MCP servers as containers behind one endpoint, with secret handling | You want vendor-published MCP servers sandboxed in Docker and the published catalog covers you |
| MetaMCP | Aggregates MCP servers into namespaced endpoints with a middleware layer | You mainly need to group and re-scope existing MCP servers per client |
| Composio | A hosted catalog of managed integrations with auth handled for you | A fixed managed catalog is enough and you never need to add your own SOAP service, in-house API or database |
| AnythingMCP | Turns the APIs, SOAP services and databases you already run into MCP tools | Your systems are not MCP servers yet, and you want the choice of holding the credentials yourself |
Side-by-side pages with the full feature tables: anythingmcp.com/vs.
Forwarding calls leaves the hard part to the agent: knowing which tool to call next, and what your business actually means by "open order" or "active customer". AnythingMCP learns both — how the data in your connectors relates, and how your team really uses the tools — then feeds that back to the AI client as context rather than as extra tool calls.
kg_how_to_obtain tool, so the
customer's agent can ask "how do I get from a Shopware order to a DHL
tracking number?" and receive chaining hints across connectors.The AI passes are off by default — opt in with a global env flag and a per-workspace switch, using OpenAI, OpenRouter or Anthropic. The graph, manual editing and the MCP tool work with no LLM key at all.
➡️ Knowledge Graph & AI skills guide →
Every tool can declare exactly which fields leave your infrastructure. The mapping is attached per tool and applied on the way out, so the AI client — and the third-party model behind it — only ever receives the shape you approved.
select template names the fields to keep
and what to call them; a JMESPath expression covers the reshaping a template
can't express. Where an agent is better served by a stable shape, swap the
value for a placeholder ("iban": "= [redacted]") instead of removing the
field."fallbackToRaw": false on those
tools and a broken mapping fails the call instead of leaking through it.Two payoffs at once: sensitive fields never reach the model, and every field you drop is a field you don't pay for in the context window.
{
"transform": {
"mode": "select",
"fallbackToRaw": false,
"exclude": ["customer.iban", "customer.taxId"],
"select": { "order": "$.id", "total": "$.amounts.gross", "status": "$.state" }
}
}
The audit log still records the full upstream response inside your own database. Shaping what the agent sees never costs you the evidence of what the API actually returned.
➡️ Response mapping reference →
Claude supports custom connectors: remote MCP servers you add once in Settings → Connectors, and that work across Claude.ai, Claude Desktop and Claude Code. AnythingMCP creates that connector from any API you already have — without writing an MCP server:
Your credentials stay on your infrastructure, every tool call lands in the audit log, and role-based access controls which users see which tools. Step-by-step guide →
Apps in ChatGPT are built on MCP, and AnythingMCP gives you that MCP backend without writing one. Point it at your REST, SOAP, GraphQL or database endpoint and you get a ChatGPT-ready connector: add it in ChatGPT's settings (or use it as the tool layer of an Apps SDK app) and ChatGPT can read and act on your business data.
The same connector works simultaneously in Claude, ChatGPT, Gemini, Copilot and Cursor — build once, connect everywhere. ChatGPT setup guide →
AI clients speak MCP, but your systems speak REST, SOAP, GraphQL and SQL. Writing and maintaining a bespoke MCP server per system — with auth, audit and access control — takes weeks each. AnythingMCP is the no-code layer in between:
| Problem | Solution |
|---|---|
| You have REST APIs but AI clients speak MCP | REST → MCP conversion with OpenAPI / Swagger import |
| You have legacy SOAP/WSDL services | SOAP → MCP bridge with automatic WSDL parsing |
| You need to query databases from AI agents | DB → MCP with auto-generated query tools (7 engines) |
| You want one endpoint for all your APIs | MCP middleware that aggregates multiple connectors |
| You need an MCP server for Deutsche Bahn / DHL / weclapp / … | The adapter catalog — install and credential it in a minute |
| You can't ship credentials to a third party | Runs on your infrastructure — credentials AES-256-GCM at rest |
| You need auth, audit logs and RBAC | Built-in OAuth2, audit log and role-based access — no DIY |
| A third-party model would see every field your API returns | Per-tool response mapping — drop or reshape fields before they leave your network |
| Your agent calls tools in the wrong order, or misses how two systems connect | Knowledge Graph & AI skills — chaining hints and learned business rules, served as context |
What people actually build with it
| Guides | |
|---|---|
| Ask about trains, live delays and routes | Deutsche Bahn |
| Talk to the ERP from Claude | weclapp · Xentral |
| Track parcels | DHL · GLS |
| Validate an invoice before paying it | VIES VAT · Handelsregister |
| Let agents read a production database, read-only | Database connectors |
| Bridge a SOAP service from 2009 to a 2026 model | SOAP → MCP |
189 adapters, exposing 1,800+ tools. 20 need no API key; the rest ask for your credentials at import and the tools are available immediately. Every one has a setup guide on anythingmcp.com/guides, in seven languages.
| Category | Examples |
|---|---|
| 📦 Logistics & shipping | Deutsche Bahn, DHL, DPD, GLS, Shipcloud, Sendcloud |
| 💼 ERP, accounting & invoicing | weclapp, Xentral, DATEV, Scopevisio, Billomat, FastBill |
| 🛍️ E-commerce | Amazon Seller, Etsy, Shopware 6, WooCommerce, Mercado Libre 🌎, Oxomi |
| 👥 HR & field service | Personio, HRWorks, Kenjo, MFR Mobile Field Report |
| 🏛️ Government & public data | VIES VAT, Handelsregister, UK Companies House 🇬🇧, DESTATIS, Bundesbank, OpenPLZ, NINA |
| 🏦 Banking & payments | N26, Wise 🇬🇧, PAYONE, Razorpay 🇮🇳, Paystack 🇳🇬 |
| 💬 Messaging & communication | WhatsApp, LINE 🇯🇵, TeamViewer |
| 🎾 Sports & Web3 | Playtomic, Sorare |
| 🏗️ Construction & mapping | PlanRadar, HERE Geocoding |
An adapter is a single JSON file. That is why the catalog is this size, and why adding one is a reasonable first contribution. Missing yours? Request it — we prioritise by 👍 — or build it.
➡️ docs/guides.md — Claude / ChatGPT / Gemini / Copilot / Cursor setup · REST / SOAP / GraphQL / Database / MCP-bridge connector guides · API reference & deployment docs · FAQ.
Looking for a specific service? Every adapter has a step-by-step guide at anythingmcp.com/guides.
Read the Contributing guide before opening a PR. The easiest useful contribution is an adapter: one JSON file, and there is a walkthrough issue for it.
Open source under the GNU Affero General Public License v3 (AGPL-3.0-only). Commercial use inside your own company is included and always was; the copyleft obligation only starts if you modify AnythingMCP and offer the modified version to others over a network. Cloud-operator code under ee/ is separately licensed and is not required for self-hosting — see the License FAQ.
⭐ If this saved you a week of writing MCP servers, star it.
Stars are how the next person finds it — and how we decide which adapter to build next.
Content type
Image
Digest
sha256:fe536ef3c…
Size
227.2 MB
Last updated
about 8 hours ago
docker pull helpcodeai/anythingmcp