filter-mcp-tools
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., "@filter-mcp-toolsfilter to docs_* tools, excluding any with delete"
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.
filter-mcp-tools
filter-mcp-tools is a deterministic MCP tool-list relay. It connects to one
HTTP, legacy SSE, or stdio MCP server, lets an operator inspect the complete
catalog, and exposes a filtered stdio MCP server to Claude Code, Codex, or any
other local MCP client.
Behavior
Exact, glob, and regular-expression include/exclude rules match full tool names.
Include rules are ORed. When any include rule exists, unmatched tools are removed.
Exclude rules are ORed and always win over include rules.
tools/listreturns only retained tools; directtools/callattempts for hidden tools are rejected before reaching the upstream server.A zero-tool result fails closed unless
--allow-emptyis explicit.Tool pagination and
notifications/tools/list_changedare handled.Prompts, resources, subscriptions, and completion requests pass through unchanged when the upstream advertises them.
This is deterministic name filtering, not semantic retrieval. It is designed for auditable allowlists and denylists.
Related MCP server: Multi-MCP Proxy
Recommended workflow
First inspect the upstream catalog without a filter:
npx -y filter-mcp-tools@latest list \
--url https://mcp.example.com/mcp \
--names-onlyThen preview both sides of a proposed rule before exposing the relay:
npx -y filter-mcp-tools@latest list \
--url https://mcp.example.com/mcp \
--include-glob 'docs_*' \
--exclude-regex '/delete|remove/i' \
--show kept
npx -y filter-mcp-tools@latest list \
--url https://mcp.example.com/mcp \
--include-glob 'docs_*' \
--exclude-regex '/delete|remove/i' \
--show removedMove the accepted rules into a JSON config and use the same file for list and
proxy. This keeps review and runtime behavior identical.
Install and test
npm install --global filter-mcp-tools
filter-mcp-tools --versionTo develop locally:
git clone https://github.com/mapix/filter-mcp-tools.git
cd filter-mcp-tools
npm ci
npm run checkOne-off use does not require a global install:
npx -y filter-mcp-tools@latest --helpInspect before filtering
List every tool from an HTTP MCP endpoint:
filter-mcp-tools list \
--url https://mcp.example.com/mcp \
--header-env Authorization=MCP_AUTHORIZATIONPreview a filter and include the match explanation and complete MCP schemas:
filter-mcp-tools list \
--url https://mcp.example.com/mcp \
--header-env Authorization=MCP_AUTHORIZATION \
--include-glob '*docs*' \
--exclude-regex '/delete|remove/i' \
--jsonUseful output controls:
--show kept # all, kept, or removed
--names-only # one selected tool name per line
--json # schemas plus includedBy/excludedBy explanationsRun as a relay
filter-mcp-tools proxy \
--url https://mcp.example.com/mcp \
--header-env Authorization=MCP_AUTHORIZATION \
--include-glob '*docs*' \
--exclude-regex '/delete|remove/i'The relay speaks MCP over stdout/stdin, so stdout is reserved for protocol frames. Diagnostics go to stderr and never include resolved header values.
Claude Code example (pin the version in long-lived configuration):
claude mcp add -s user filtered-docs -- \
npx -y filter-mcp-tools@0.1.0 proxy --config /absolute/path/filter.jsonCodex uses the same stdio command:
[mcp_servers.filtered-docs]
command = "npx"
args = ["-y", "filter-mcp-tools@0.1.0", "proxy", "--config", "/absolute/path/filter.json"]Clients with native per-server tool filtering can use that instead and avoid the extra process.
JSON configuration
Configuration avoids long client command lines and supports secret sources without shell evaluation:
{
"upstream": {
"transport": "http",
"url": "https://mcp.example.com/mcp",
"headers": {
"Authorization": {
"env": "MCP_TOKEN",
"prefix": "Bearer "
},
"x-api-key": {
"command": [
"/usr/bin/security",
"find-generic-password",
"-s",
"my-mcp-token",
"-w"
]
}
}
},
"filter": {
"include": ["docs_read"],
"includeGlob": ["docs_*"],
"includeRegex": ["/^wiki_(read|search)$/"],
"exclude": [],
"excludeGlob": ["*_admin"],
"excludeRegex": ["/delete|remove/i"],
"ignoreCase": false
},
"allowEmpty": false
}Run it with filter-mcp-tools list --config filter.json to preview, then change
list to proxy. Command secret sources use execFile, never a shell; only use
configuration files you trust.
examples/filter.example.json is a copyable
starting point.
Literal header values support ${ENV_VAR} interpolation. Avoid putting secrets in
CLI arguments because process listings and shell history can expose them.
Use --transport sse only for a legacy HTTP+SSE upstream. Streamable HTTP is the
default for --url; the relay exposed to the local client remains stdio in both
cases.
Stdio upstream
filter-mcp-tools list \
--transport stdio \
--stdio-command node \
--stdio-arg ./server.mjs \
--include-regex '/^docs_/'The JSON equivalents are upstream.command, args, cwd, and env.
Scope and security
This relay is a client-side visibility and invocation boundary. A user who controls the relay configuration can change its filters, so it does not replace authorization on the upstream MCP server. Enforce real access through server-, key-, team-, or identity-bound policy, then use this package to narrow the already-authorized set.
See SECURITY.md for vulnerability reporting.
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
- Alicense-qualityBmaintenanceA lightweight MCP gateway that aggregates multiple MCP services into a unified stdio interface, automatically prefixing tool names with the service name to avoid conflicts.11MIT
- Alicense-qualityCmaintenanceA flexible MCP proxy server that connects to and routes between multiple backend MCP servers over STDIO or SSE, enabling dynamic management and namespacing of tools.111MIT
- Alicense-qualityCmaintenanceA minimal, zero-dependency MCP server that enables defining and running tools over stdio transport, without extra features like HTTP or resources.211MIT
- Flicense-qualityDmaintenanceA local stdio MCP concierge that aggregates multiple remote MCP servers, forwarding their tools with name-prefix routing to avoid conflicts.
Related MCP Connectors
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
Static MCP manifest and tool-policy security preflight with signed input-redacted receipts
An MCP server for Arcjet - the runtime security platform that ships with your AI code.
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/mapix/filter-mcp-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server