OneTool MCP
The Problem
Each MCP server consumes 3K-30K tokens per request. Connect 5 servers and you've burned 55K tokens before the conversation starts. Connect 10+ and you're at 100K tokens.
The math is brutal: Claude Opus 4.5 at $5/M input tokens, 20 days × 10 conversations × 10 messages × 3K tokens = $30/month per MCP server - even if you never use the tools.
And then there's context rot - your AI literally gets dumber as you add more tools (Chroma Research, 2025).
The Solution
OneTool is one MCP server that exposes tools as a Python API. Instead of reading tool definitions, your agent writes code:
>>> brave.search(query="react docs 2026")Configure one MCP server. Use unlimited tools.
"Agents scale better by writing code to call tools instead. This reduces the token usage from 150,000 tokens to 2,000 tokens...a cost saving of 98.7%"
96% fewer tokens. 30× lower cost. No context rot.
Install
Requires uv:
uv tool install 'onetool-mcp[all]' # everything
onetool init --config ~/.onetoolAdd to Claude Code:
claude mcp add onetool -- onetool --config ~/.onetool/onetool.yaml --secrets ~/.onetool/secrets.yamlOr manually add to ~/.claude/mcp.json:
{
"mcpServers": {
"onetool": {
"command": "onetool",
"args": ["--config", "/Users/yourname/.onetool/onetool.yaml", "--secrets", "/Users/yourname/.onetool/secrets.yaml"]
}
}
}That's it. All 100+ tools work out of the box.
Verify: onetool init validate --config ~/.onetool/onetool.yaml
Features
Feature | Description |
96% Token Savings | ~2K tokens no matter how many tools you add |
100+ Built-in Tools | Web search, AWS, databases, file ops, diagrams, conversions |
Explicit Execution | See exactly what runs — |
Dynamic AWS | Proxy all 57+ AWSlabs MCP servers; SSO and credentials handled |
Live Whiteboard | Draw diagrams with a Mermaid-compatible DSL via Excalidraw |
MCP Server Proxy | Wrap existing MCP servers without the tool tax |
Encrypted Secrets | age-encrypted |
Forge Tools | Build new tools as part of the conversation |
Image Vision | Routes to a cheaper, better vision model via |
Smart Context |
|
Smart Tools | Delegate to cheaper LLMs (10× savings) |
Security Layers | AST validation, path boundaries, output sanitisation |
Tools
27+ packs, 230+ tools ready to use:
Pack | Tools | Extra | Description |
|
|
| Dynamic AWS proxy (57+ servers) |
|
|
| Web and news search |
|
|
| Browser annotations (DevTools) |
|
|
| Library documentation |
|
|
| Document conversion |
|
|
| Database operations |
|
|
| Mermaid / Kroki diagrams |
|
|
| Excel files |
|
|
| File operations |
|
|
| Google Grounding search |
|
|
| RAG knowledge base (FTS5+vector) |
|
|
| Persistent memory |
|
| Scaffold new tool packs | |
|
| Smart context store (SQLite+FTS5) | |
|
|
| Image vision via dedicated model |
|
| LLM-powered transforms | |
|
| Secrets encryption | |
|
| Named timers | |
|
| Introspection | |
|
|
| Package versions |
|
|
| Browser annotations (Playwright) |
|
|
| Fast code search |
|
|
| AI-native search |
|
|
| Web fetching |
|
|
| Live Excalidraw canvas |
📖 Complete tools reference — full summary table with all 230+ tools
MCP Server Proxy
Wrap any existing MCP server and call it explicitly - simple yaml config without the tool tax:
# .onetool/onetool.yaml
servers:
chrome_devtools:
type: stdio
command: npx
args: ["-y", "@anthropic-ai/chrome-devtools-mcp@latest"]
github:
type: stdio
command: npx
args: ["-y", "@anthropic-ai/github-mcp-server@latest"]>>> mcp.call(server="github", tool="get_file_contents", arguments={"path": "README.md"})Extending
Drop a Python file, get a pack. No registration, no config:
# .onetool/tools/wiki.py
pack = "wiki"
def summary(*, title: str) -> str:
"""Get Wikipedia article summary."""
import httpx
url = f"https://en.wikipedia.org/api/rest_v1/page/summary/{title}"
return httpx.get(url).json().get("extract", "Not found")>>> wiki.summary(title="Python_(programming_language)")Documentation
Quickstart - 30 seconds to first tool call
Installation - All platforms
Configuration - YAML schema
Tools Reference - All 100+ tools
Security - Security layers
Extending - Build your own
Dev Docs - Internal developer documentation
Specifications - OpenSpec specifications index
References
Code Execution with MCP - Anthropic Engineering
Context Rot - Chroma Research
Telemetry
OneTool sends anonymous startup pings (event type, version, OS). No personal data. Opt out: export DO_NOT_TRACK=1 or set telemetry.enabled: false in onetool.yaml. Details
Issues
Check for existing issues first:
Browse the tracker: github.com/beycom/onetool-mcp/issues
Search with GitHub syntax:
is:issue repo:beycom/onetool-mcp <keyword>
Raise a new issue: github.com/beycom/onetool-mcp/issues/new
Support
If you find OneTool useful:
License
GPLv3
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/beycom/onetool-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server