mcp-gate
OfficialClick on "Deploy 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: Levitate
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 deployed
Maintenance
Related MCP Connectors
MCP server for mandates, delegation, policy-gated execution, credential grants, and audit.
Governed MCP gateway: one endpoint for your tools, with credential custody and audit log.
An authenticated remote MCP server for user-owned devices and one-shot capability invocation.
Guarded MCP server for agent-readable business truth, provenance, readiness, and discovery.
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 hierarchical2113Apache 2.0
- AlicenseNot gradedqualityAmaintenanceLifts local stdio MCP servers into remote Streamable HTTP endpoints for cloud-hosted AI clients, with bearer-token auth and tool policy filtering.9MIT
- AlicenseNot gradedqualityBmaintenanceEnables clients to access multiple backend MCP servers through a single endpoint, with OAuth 2.1 authorization, namespaced tools, and secure credential management.MIT
- AlicenseNot gradedqualityBmaintenanceEnables per-profile tool filtering and enforcement for one or more upstream MCP servers, exposing only allowed tools and rejecting blocked calls, with Streamable HTTP serving and observability.486,710MIT