Protocol- & auth-agnostic API connector: SOAP/REST behind any auth, config-driven. Lib/API/MCP.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
One payload in, any API out. mcp-api-connect is a protocol- and auth-agnostic connector engine: describe a target service (URL, protocol, auth, request/ response shape) once, then send it a normalized payload and get a normalized response back โ whether the target is a REST/JSON API, a legacy SOAP service, protected by an API key, Basic auth, a Bearer token, or OAuth2 client credentials.
It ships as three things built on the same core engine, so however you want to use it, you can:
pip install mcp-api-connect, call MCPAPIConnectEngine
directly, no server required.pip install mcp-api-connect[api], run
mcp-api-connect-api, POST to /invoke.pip install mcp-api-connect[mcp], run mcp-api-connect,
point any MCP client (Claude, etc.) at it so an agent can call registered
connectors โ or arbitrary services on the fly โ as tools.Every integration project reinvents the same wheel: a REST client here, a
SOAP client there, one auth flow per service, ad-hoc request/response
mapping scattered across the codebase. mcp-api-connect centralizes that into one
declarative spec (InvokeSpec) and one execution engine, so adding a new
target service is config, not code.
Register a reusable connector once, then invoke it by name:
Or run it in a container (stdio transport):
Exposes tools: invoke (stateless, one-off), register_connector,
list_connectors, invoke_connector (by name), delete_connector. An agent
can register a connector for "the Salesforce API" once, then just say "call
it with this payload" from then on.
โ Full setup for Claude Desktop / Claude Code / Cursor, persistence, security notes, and a worked example: docs/mcp-integration.md.
Target โ base URL, protocol (rest | soap), timeout, default headers.AuthSpec โ type (none, api_key, basic, bearer,
oauth2_client_credentials) + a config dict shaped for that type. OAuth2
tokens are fetched and cached automatically.RequestFormat / ResponseFormat โ content type (json, xml,
soap) plus a declarative field_map ({"target.path": "$.source.jsonpath"})
for reshaping payloads without writing code, or a Jinja2 body_template
for full control (required for SOAP envelopes).InvokeSpec โ bundles the three above; the unit of "how to reach one
service." Store it as a named Connector or pass it inline per call.See src/mcp_api_connect/core/models.py for the
full schema, and docs/auth-reference.md for the
config shape each auth type expects.
config fields for
every auth typeAuthStrategy, register via
engine.register_auth_strategy(...).ProtocolAdapter, register via
engine.register_adapter(...).ConnectorStore (ships with
InMemoryConnectorStore and SqliteConnectorStore, credentials encrypted
at rest via Fernet).zeep-backed adapter, no hand-written envelope needed)ConnectorStoreApache License 2.0 โ see LICENSE and NOTICE.
Contributions are accepted under the same license (inbound = outbound); see CONTRIBUTING.md.
mcp-api-connectโข is a trademark of Balaji Venkatasubramaniyar. The Apache 2.0 license covers copyright and patents but grants no trademark rights. You may use the name to refer to this project and to state compatibility, but not to name a fork, product, or service, or to imply endorsement. See TRADEMARKS.md for the full policy.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-api-connect)<a href="https://allmcps.com/mcp/mcp-api-connect"><img src="https://allmcps.com/api/badge/mcp-api-connect?style=directory" alt="MCP API Connect on AllMCPs" /></a>