mcp-toolbox
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-toolboxsearch ./src for FIXME"
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-toolbox
Product/PM angle: A plug-and-play MCP tool server — add capabilities to any MCP-compatible agent (Claude Desktop, etc.) by registering pure-Python tools with zero boilerplate.
An MCP (Model Context Protocol) server exposing a growing library of agent tools: file search, reliability scoring, and prompt injection detection.
Status — milestone roadmap
Tag | Milestone | Status |
m1 | Package scaffold, tool registry, | Done |
m2 |
| Done |
m3 | Config system, CLI ( | Done |
m4 | Demo script, edge-case tests, manifest dump | Done |
Related MCP server: IteraTools MCP
Installation
pip install -e ".[dev]" # dev + tests
pip install -e ".[server]" # includes mcp SDK + pyyamlUsage
mcptb list # list registered tools
mcptb dump # JSON manifest of all tools
mcptb serve # start MCP server (requires [server] extra)Use from Claude Desktop
Requires the
[server]extra — install it first:pip install -e ".[server]"This pulls in the
mcpSDK (the stdio transport) andpyyaml.
Add to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"mcp-toolbox": {
"command": "python",
"args": ["-m", "mcp_toolbox.cli", "serve"],
"env": {}
}
}
}The server uses stdio transport (as required by the MCP spec) and
registers every tool in the registry automatically. The mcp package is
lazy-imported inside serve(), so the rest of the CLI (mcptb list,
mcptb dump) works without the [server] extra installed.
Tools
repo_search(directory, keyword, file_pattern="*.py")
Keyword search over a directory tree. Returns [{file, line_no, line}].
reliability_score(answer, context)
Heuristic faithfulness score (0-1) for an answer vs. its context. Returns {score, details}.
redteam_scan(text)
Detects prompt injection / jailbreak patterns. Returns {risk_level, flags, score}.
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-quality-maintenanceA lightweight and fast MCP server that enables AI agents to efficiently discover and execute tools through progressive disclosure, minimizing context consumption while supporting safe code execution in external environments.Last updated22
- AlicenseBqualityDmaintenanceProduction-ready MCP server with 40+ tools — QR codes, PDFs, text processing, TTS, web scraping, image generation and more. Built for AI agents.Last updated2537MIT
- Alicense-qualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.Last updated52MIT
- Alicense-qualityAmaintenanceProduction-ready MCP server providing RAG, hierarchical memory, and 8+ tools for AI agents via the Model Context Protocol.Last updated41Apache 2.0
Related MCP Connectors
Local-first RAG engine with MCP server for AI agent integration.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
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/im-girisankar/mcp-toolbox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server