Security-first MCP server that connects any OpenAPI, GraphQL, gRPC or SOAP API to AI agents.
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.

Stop installing a new MCP server for every service: point this one at any OpenAPI/Swagger, GraphQL,
gRPC or SOAP spec - or pick one from the built-in catalog of 2500+ public APIs - and your AI agent
can call it. Securely, in fewer steps, with fewer tokens.
Installation Β· Meta-tools Β· API catalog Β· Examples Β· Configuration Β· Security

Most "universal API" MCP servers only speak REST/OpenAPI. This project is built around three differentiators:
Operation model with pluggable spec adapters (OpenAPI, GraphQL, gRPC, SOAP). Tools and executors never care which protocol produced an operation.
The agent explores APIs like a filesystem instead of loading hundreds of tools at once (which would blow up the context window on large APIs like Stripe). It searches for operations, inspects the ones it needs, then executes them.
| Tool | Purpose |
|---|---|
search_catalog | Find ready-to-load public APIs (curated list + APIs.guru directory, 2500+ specs) |
load_api | Register an API from a spec URL/file (protocol auto-detected) |
list_apis | List loaded APIs |
search_operations | Fuzzy-search operations across loaded APIs |
get_operation | Full parameter/response schema for one operation |
execute | Call an operation (auth + security guard applied); extract returns only the fields you ask for |
execute_chained | Run a sequence of operations in one call, piping results between steps; nested lists run in parallel |
execute_graph | Run a dependency graph of operations; order is inferred from ${id.path} references and independent nodes run in parallel automatically |
unload_api | Remove a loaded API |
audit_log | Recent outbound calls (method, host, path, status) |

Where a per-API MCP server needs one tool round-trip per call - each returning a full JSON payload into the agent's context - this server collapses whole workflows:
extract - execute(..., extract=["items.*.name", "total_count"]) returns just those fields instead of a multi-kilobyte response. * fans out over arrays.execute_chained pipes step results into later params via ${save_as.path} references: one tool call instead of N.UCMCP_CACHE_TTL seconds (default 60), so repeated lookups are instant and free; pass fresh: true to bypass. Successful mutations invalidate that API's cached reads.You don't need to hunt for spec URLs. search_catalog searches two sources:
The catalog is discovery-only: it returns spec URLs, never loads or executes anything itself, so the security guard still applies to everything you load from it.
The server runs in any MCP host via uvx - no manual install needed, the package is fetched from PyPI automatically (add [all] for GraphQL/gRPC/SOAP support):
From source (development): pip install -e ".[all,dev]" and use "command": "universal-connector-mcp" instead. Extras: graphql, grpc, soap, keyring, all, dev; the core install supports OpenAPI/REST only.
One click via the badge above, or add the JSON block to .cursor/mcp.json in your project (shared with your team) or ~/.cursor/mcp.json (personal, all projects). See examples/mcp.json for a full config with credentials.
Add the same mcpServers block to claude_desktop_config.json (Settings > Developer > Edit Config).
Add the server under "servers" in .vscode/mcp.json:
All major MCP hosts accept the same mcpServers block shown above in their respective config files (~/.codeium/windsurf/mcp_config.json, Cline's MCP settings, etc.).
AI agents installing this server for a user: follow llms-install.md.
Point UCMCP_APIS_CONFIG at a YAML file to auto-load APIs at startup - see examples/apis.example.yaml.
You never edit config files to manage APIs - just tell your agent:
list_apis shows them.unload_api removes it (and from the remembered state).When an API needs credentials, load_api tells the agent exactly which environment variable to set (e.g. STRIPE_API_KEY), whether it is already configured, and the agent relays copy-pasteable instructions - you add the variable to the env block of your MCP config and restart. Secrets are never typed into the chat.
The server remembers which APIs you loaded (their spec locations - never credentials or response data) in UCMCP_STATE_FILE and restores them automatically on the next start, so the agent can pick up right where it left off. Set UCMCP_STATE_FILE=off to disable.
Factual signals from GitHub, npm, and our automated checks β not a rating.
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/universal-connector-mcp)<a href="https://allmcps.com/mcp/universal-connector-mcp"><img src="https://allmcps.com/api/badge/universal-connector-mcp?style=directory" alt="Universal Connector MCP on AllMCPs" /></a>