Named MCP servers
Define a server with an auth-config and a tool allowlist, then generate a per-user mcp_url any MCP client connects to.
Open Connector is an open-source (AGPL-3.0), self-hostable MCP gateway: it exposes your connectors as named Model Context Protocol servers, runs the OAuth, and injects credentials server-side at call time — so your agents act over MCP while tokens never leave your infrastructure. It's wire-compatible with Composio's MCP, so existing clients point at your host unchanged.
Define a server with an auth-config and a tool allowlist, then generate a per-user mcp_url any MCP client connects to.
The gateway runs the OAuth handshake and refreshes tokens. Users grant access once; agents get scoped, least-privilege connections.
Tokens are sealed in an AES-256-GCM vault and injected server-side at call time. The MCP client never sees a raw secret.
Every MCP tool call writes a hash-chained record — actor, scope, timestamp, result — your security team can trust.
The whole gateway is AGPL-3.0. Run it on your own infrastructure for free — no per-call vendor tax, no tokens in someone else's cloud.
Wire-compatible with Composio's MCP: named servers, per-user instances, generated urls, and ready-to-run client endpoints.
An MCP server exposes a set of tools. An MCP gateway is the control point between many clients and those tools: it maps each client to the right connected account, enforces the allowlist, and injects credentials only when a tool call is made.
# after you create the MCP server
curl -X POST "https://connect.acme.com/composio/api/v3.1/mcp/servers/generate"
# use returned user_ids_url/connected_account_urls in any MCP clientOpen source, self-hostable, with credentials that never leave your infrastructure. Run it from source today.