mcp-toolbox
A plug-and-play MCP server that adds zero-boilerplate tools like file search, reliability scoring, and prompt injection detection to any MCP-compatible agent.
README
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, repo_search tool, core tests |
Done |
| m2 | reliability_score + redteam_scan tools, full test suite |
Done |
| m3 | Config system, CLI (mcptb list/dump/serve), README, packaging |
Done |
| m4 | Demo script, edge-case tests, manifest dump | Done |
Installation
pip install -e ".[dev]" # dev + tests
pip install -e ".[server]" # includes mcp SDK + pyyaml
Usage
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}.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.