mcp-gate
OfficialClick 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-gatewhat tools am I authorized to use?"
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-gate
mcp-gate lets you mount several MCP toolkits behind one server and filter which tools each caller can see and call — without toolkits knowing about your auth or tier model.
Capability-gated, multi-toolkit MCP tool serving on top of the official
mcp SDK.
mcp-gate lets you register tools once, tag each with an optional
capability, and serve the same set of tools to different callers who see
different subsets of them — a public tool visible to anyone, and a gated
tool visible only to a caller holding the right capability. It works over
stdio (single local process) and over stateless streamable HTTP (multiple
callers, bearer-token auth), with no branching between the two in your tool
code.
mcp-gate has no dependency on any specific web framework, ORM, or user
model. Its only third-party dependencies are mcp, asgiref, and
starlette. A host application (Django, FastAPI, a bare script — anything)
supplies its own Identity that resolves a bearer token to a Caller and
its capabilities; mcp-gate never touches your database or auth system
directly.
Install
pip install git+https://github.com/RunLit/mcp-gate.git(This package is not yet published to PyPI.)
Related MCP server: AccelMCP
Core concepts
Toolkit— a named, passive registry of tools. You decorate plain functions with@kit.tool(requires=...); the function's docstring becomes the description the model reads.ToolSpec— the recordToolkit.tool()creates: a name, the function, the required capability (orNonefor public), and a description.Caller— who is asking, and what capabilities they hold.ANONYMOUSis the caller used when no credential was presented, or the credential didn't resolve to anything.Identity— a protocol with one async method,resolve(token) -> Caller, that turns a raw bearer token (orNone) into aCaller. This is the one seam a host application implements against its own user store. Two reference implementations ship in the package:StaticTokenIdentity— an in-memory token table,{token: (subject, capabilities)}. Good for a single-owner standalone deployment or tests; anything with real users should resolve against a database instead.OpenIdentity— grants a fixed capability set to every caller, ignoring the token entirely.
Gate— assembles one or more toolkits and anIdentityinto a realmcp.server.MCPServer, with per-request capability filtering wired in viaCapabilityMiddleware.asgi_app/run_stdio— the two ways to serve aGate.
Capability-naming convention
A capability is just a string; mcp-gate does no parsing or validation of
it beyond exact-match comparison. Two things follow from that:
Capability names are global, not toolkit-scoped.
Gatemerges tool names from every mounted toolkit (colliding tool names are rejected unless you call.prefixed()), but capability strings get no such treatment — two toolkits that both use"read_status"share that capability whether you meant them to or not.Convention: name capabilities
<verb>_<domain>, snake_case, with the domain naming the toolkit or resource the tool touches — e.g.read_printer,control_printer,read_solar. If you mount toolkits from unrelated domains in the sameGateand want their capabilities kept separate even when the verb matches, prefix the domain further (e.g.printer_a:read_statusvs.printer_b:read_status) —mcp-gatedoesn't care what characters you use, since it only ever compares full strings.requires=Nonemarks a tool public. There is no wildcard capability and no implicit inheritance: a caller who should see everything (a superuser, say) needs every capability name granted explicitly by yourIdentity.
Worked example
# toolkit.py
from mcp_gate import Toolkit
kit = Toolkit("greeter")
@kit.tool(requires=None)
def greeting() -> str:
"""Say hello. Available to anyone, including anonymous callers."""
return "hello"
@kit.tool(requires="read_printer")
def printer_status() -> str:
"""Report the printer's current status. Requires the read_printer capability."""
return "idle"Serving on stdio, with OpenIdentity
Stdio has no headers and no bearer token — the OS process boundary is the
trust boundary. Anyone who can start the process already has whatever access
starting it implies, so OpenIdentity (a fixed capability set, no
credential check) is the right identity here:
# stdio_main.py
from mcp_gate import Gate, OpenIdentity, run_stdio
from toolkit import kit
gate = Gate(
name="my-local-server",
toolkits=[kit],
identity=OpenIdentity(["read_printer"]),
)
if __name__ == "__main__":
run_stdio(gate)python stdio_main.pyServing over HTTP, with StaticTokenIdentity
# http_main.py
from mcp_gate import Gate, StaticTokenIdentity, asgi_app
from toolkit import kit
identity = StaticTokenIdentity({
"super-secret-token-for-rnl": ("rnl", ["read_printer"]),
})
gate = Gate(name="my-http-server", toolkits=[kit], identity=identity)
app = asgi_app(gate) # a plain ASGI appuvicorn http_main:app --host 0.0.0.0 --port 8000A request with Authorization: Bearer super-secret-token-for-rnl sees both
greeting and printer_status in tools/list, and can call either. A
request with no token, or an unrecognized one, resolves to ANONYMOUS and
sees only greeting; calling printer_status anyway raises the same
"tool not found"-shaped error as calling a tool that doesn't exist at all —
gating never leaks which restricted tools exist to a caller who can't use
them.
asgi_app(gate, **streamable_http_kwargs) passes any extra keyword
arguments straight through to the SDK's streamable_http_app() (host,
transport_security, json_response, streamable_http_path,
max_request_body_size). This matters once you're behind nginx (or
similar) fronting a real domain: streamable_http_app() auto-enables a
DNS-rebinding guard that only allows Host headers matching
127.0.0.1/localhost/::1, so a request for your production domain gets
a 421 Misdirected Request unless you pass a transport_security (or
host) that allows it, e.g.:
from mcp.server.transport_security import TransportSecuritySettings
app = asgi_app(
gate,
transport_security=TransportSecuritySettings(allowed_hosts=["mcp.example.com"]),
)Warning: never use OpenIdentity over HTTP
OpenIdentity grants its fixed capability set to every caller and never
looks at the token — it exists for stdio, where the process boundary already
is the trust boundary. Wiring OpenIdentity into asgi_app() means every
HTTP request, from anyone who can reach the port, gets that full capability
set with no credential check whatsoever. Use StaticTokenIdentity or your
own Identity (backed by real per-user credentials) for anything served
over asgi_app().
Running the tests
pip install -e ".[dev]"
pytest tests/ -vThis 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
- AlicenseAqualityAmaintenanceSecurity-enforcing MCP proxy that sits between an AI agent and any number of downstream MCP servers, intercepting every tool call through a capability-token policy gateway that can allow, deny, or escalate to human approval before the call reaches any real tool. It also exposes built-in operator tools for approval workflows, audit trail queries, token management, voice/HUD output, and hierarchical2112Apache 2.0
- Flicense-qualityBmaintenanceAn MCP server with HTTP/stdio support, a web admin panel for managing services, capabilities, and user permissions with Bearer token authentication, enabling relay and access control for MCP tools.
- Alicense-qualityAmaintenanceLifts local stdio MCP servers into remote Streamable HTTP endpoints for cloud-hosted AI clients, with bearer-token auth and tool policy filtering.0MIT
- Flicense-qualityBmaintenanceMulti-tenant MCP server with OAuth 2.1 authorization, enabling tenant-scoped tool access and audit logging.
Related MCP Connectors
Remote MCP for A2A caller identity, scope policy, verdict receipts, and audit history.
Self-hosted federated MCP gateway: one OAuth 2.1 MCP server in front of N apps, user-level scopes.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
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/RunLit/mcp-gate'
If you have feedback or need assistance with the MCP directory API, please join our Discord server