mcp-slim-proxy
Allows forwarding calls to a Vault MCP server, enabling interaction with Vault's secret management and access control functionalities.
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-slim-proxylist tools from foreman"
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-slim-proxy
An MCP stdio server that sits between your MCP host (Claude Code, OpenClaw, Cursor — anything MCP-compatible) and your real MCP servers, re-advertising their tools with minified schemas to cut the context tokens spent on tool metadata every single request.
host (Claude Code / OpenClaw)
│ sees slim schemas
▼
mcp-slim-proxy (stdio)
│ forwards calls unchanged
▼
upstream MCP servers (stdio / SSE / streamable-http)What gets slimmed
Preserved exactly (everything needed to call the tool correctly):
type structure,
required,enum,default, property names
Reduced:
tool descriptions → first sentence(s) within a budget (default 160 chars)
parameter descriptions → trimmed to 80 chars (or dropped entirely)
examples,title,$comment,outputSchema,annotations→ removedmarkdown decoration stripped, whitespace collapsed
Typical reduction: 60–85% of tool-schema bytes for verbose real-world servers.
Related MCP server: MCP Coordinator
Modes
minify (default) — every upstream tool is advertised with a slim schema.
Zero behavior change for the model beyond shorter descriptions.
defer — only two meta-tools are advertised: find_tools (keyword search
over the catalog, returns matching slim schemas) and use_tool (invoke by
name). Near-zero fixed context cost regardless of how many upstream tools
exist; the model pays for schemas only when it needs them. Pin
always-available tools via defer.pinned.
OpenClaw note: OpenClaw ≥2026.6 ships this pattern natively as
tools.toolSearch— prefer that for OpenClaw gateways. This proxy is for hosts without an equivalent (Claude Code, Cursor) or when you want minify mode's always-visible slim schemas.
Setup
Requires Python ≥3.10.
python3 -m venv .venv
.venv/bin/pip install mcp
cp config.example.json config.json # edit upstreamsConfig:
{
"mode": "minify",
"prefixTools": "auto",
"minify": {
"toolDescriptionMaxChars": 160,
"paramDescriptionMaxChars": 80,
"dropParamDescriptions": false
},
"tools": { "deny": [], "allow": [] },
"defer": { "pinned": [] },
"upstreams": [
{ "name": "archy", "transport": "sse", "url": "http://host:30765/sse" },
{ "name": "foreman", "transport": "streamable-http", "url": "http://host:30766/mcp" },
{ "name": "vault", "transport": "stdio", "command": "bash", "args": ["/path/start.sh"] }
]
}With multiple upstreams, tools are prefixed <upstream>__<tool> to avoid
collisions (prefixTools: "auto"; set true/false to force).
Claude Code
claude mcp add slim -- /path/to/mcp-slim-proxy/.venv/bin/python -m mcp_slim_proxy --config /path/to/config.jsonThen remove the wrapped servers from your direct MCP config so the host only sees the proxy.
OpenClaw
"mcp": {
"servers": {
"slim": {
"command": "/path/to/mcp-slim-proxy/.venv/bin/python",
"args": ["-m", "mcp_slim_proxy", "--config", "/path/to/config.json"]
}
}
}Test
.venv/bin/python tests/run_test.pySpins up a deliberately verbose upstream, connects through the proxy, and verifies size reduction, schema-structure preservation, call routing, and defer-mode meta-tools.
Limitations
Upstream
tools/list_changednotifications are not yet propagated; the registry is built once at startup. Restart the proxy after changing an upstream's tool set.
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.
Latest Blog Posts
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/sam-ueckert/mcp-slim-proxy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server