mcp-flow
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-flowadd the DeepWiki MCP server and enable it"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-flow
One MCP endpoint for every AI harness — upstream secrets stay on the gateway.
Self-hosted workspace MCP gateway: register private and vendor MCP servers, store env/API keys encrypted, mint agent API keys, and share the same tool library across Cursor, Claude, OpenCode, OpenFlow assistants, and more. Optional central or edge runtimes run installable MCPs in a sandbox (or bare, if you opt in).

Also dual-tracked as a registry catalog for OpenFlow (one-node gallery) and ProjectEverflow (marketplace MCP tab).
PLAN.md · Campaign storyboard · Issues · Apache-2.0
Visual tour
Why it exists | Gateway architecture |
|
|
Admin library | Operators |
|
|
Screenshots live in docs/images/campaign-*.png. Re-shoot from docs/campaign/ with ./capture.sh.
Related MCP server: MCPGate
Why this exists
Every IDE holding vendor API keys is not a control plane. MCP sprawl with no revoke path is not enterprise policy.

You need this when:
Platform admins must own the tool library; employees only get a URL + agent key
Upstream secrets must stay sealed on the gateway — never in harness config or model context
Cursor, Claude, OpenCode, and OpenFlow should share one workspace library
Enterprise defaults matter: deny edge-bare, no unrestricted enable-any-URL
Status
P1 gateway (remote proxy) implemented. Catalog sync and edge runtimes are later phases — see PLAN.md.
Issue | Topic |
Core plan: gateway + catalog + placement | |
Everflow / OpenFlow catalog consumer contract | |
Edge agent + multi-device sandbox/bare |
Quickstart
Requirements: Node.js ≥ 22.
cp .env.example .env
# set MCP_FLOW_MASTER_KEY and MCP_FLOW_ADMIN_TOKEN
openssl rand -base64 32 # master key
openssl rand -hex 32 # admin token
npm install
npm run build
export $(grep -v '^#' .env | xargs)
npx mcp-flow serve --port 8787TUI (manage upstream MCPs)
npx mcp-flow tuiInteractive terminal UI: list/add/enable/disable/test/delete backends, seal auth headers, mint/revoke agent API keys. Arrow keys + enter; q quits.
Mint an agent key
npx mcp-flow key create --name cursor
# → { "key": { "token": "mf_…", "prefix": "mf_…", … } } # secret shown onceAdd a remote MCP (headers sealed)
npx mcp-flow backend add \
--slug deepwiki \
--url https://mcp.deepwiki.com/mcp \
--transport streamable-http \
--enable
# Multiple sealed headers (repeat --header). Name=value or Name: value:
npx mcp-flow backend add \
--slug yh-finance \
--url https://mcp.rapidapi.com \
--header "x-api-host: yahoo-finance15.p.rapidapi.com" \
--header "x-api-key: YOUR_RAPIDAPI_KEY" \
--enable
# Merge more headers later (does not wipe existing):
npx mcp-flow backend headers yh-finance \
--header "Authorization=Bearer …"
# List header *names* only (values never printed):
npx mcp-flow backend headers yh-financeYou do not need npx mcp-remote … --header in the harness — put the URL + headers on the backend; harnesses only get the mcp-flow URL + agent key.
Point a harness at mcp-flow only
HTTP (Cursor / clients with streamable HTTP):
{
"mcpServers": {
"mcp-flow": {
"url": "http://127.0.0.1:8787/mcp",
"headers": {
"Authorization": "Bearer mf_YOUR_AGENT_KEY"
}
}
}
}Stdio shim:
MCP_FLOW_URL=http://127.0.0.1:8787/mcp MCP_FLOW_API_KEY=mf_… npx mcp-flow stdioTools appear as {slug}__{tool} plus meta tools mf_list_backends, mf_list_tools, mf_status.
Docker Compose
export MCP_FLOW_MASTER_KEY=$(openssl rand -base64 32)
export MCP_FLOW_ADMIN_TOKEN=$(openssl rand -hex 32)
docker compose up --build -dAdmin REST
All /v1/* routes require Authorization: Bearer $MCP_FLOW_ADMIN_TOKEN.
Method | Path | Notes |
|
| Mint agent key (token once) |
|
| List keys (no secrets) |
|
| Revoke |
|
| Create (GET redacts sealed headers/env) |
|
| List (redacted) |
|
| Update / enable |
|
| Upstream tools/list smoke |
|
| Agent MCP (API key) |
Security
Upstream headers/env encrypted at rest (
AES-256-GCM+MCP_FLOW_MASTER_KEY)Agent keys stored as SHA-256 hashes; plaintext shown once
GET payloads never include decrypted secrets
SSRF guards on backend URLs (
MCP_FLOW_ALLOW_PRIVATE_URLS=trueto allow LAN)Placement modes other than
remoteare rejected until P3+
Development
npm test
npm run typecheck
npm run dev # tsx src/cli.ts serveArchitecture
AI harnesses ──HTTP or stdio shim──► mcp-flow /mcp (API key)
│
┌───────────────────────┼───────────────────────┐
▼ ▼ ▼
Remote MCPs Central sandbox Edge agents
(P1) (P3) (P4–P5 / #3)License
Apache-2.0
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseCqualityDmaintenanceA powerful gateway for the Model Context Protocol (MCP) that unifies AI toolchains by federating multiple MCP servers, wrapping REST APIs as MCP tools, and supporting multiple transport methods with an admin dashboard.1
- Alicense-qualityDmaintenanceMCPGate aggregates multiple MCP servers into a single unified endpoint, enabling centralized tool management with granular filtering, automatic namespacing, and observability. Features a real-time web dashboard and optional PostgreSQL-backed audit trails for monitoring and controlling AI tool access across local and remote deployments.10Apache 2.0
- Alicense-qualityCmaintenanceSelf-hosted MCP gateway that connects productivity tools like Jira, Confluence, and Obsidian to AI assistants via a single endpoint.2MIT
Related MCP Connectors
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/real-limitless/mcp-flow'
If you have feedback or need assistance with the MCP directory API, please join our Discord server


