
OneTool MCP Server
- 23 repo stars
- Updated August 27, 2026
OneTool MCP is a MCP server that bundles Brave, Google, Tavily, Context7, AWS, Excalidraw, database, GitHub, DevTools, and Playwright into one agent integration.
What is OneTool MCP?
OneTool MCP is a consolidated Model Context Protocol server for developers who would rather register one integration than maintain separate entries for search, documentation, cloud, data stores, source control, diagrams, and browser automation. The published description lists Brave, Google, Tavily, Context7, AWS, Excalidraw, database access, GitHub, DevTools, and Playwright—making it a practical default during Build when your agent needs to research APIs, sketch architecture, query a DB, open a PR, or run Playwright checks from the same chat. Developers shipping SaaS or internal tools benefit from fewer context switches and one website (onetool.beycom.online) for setup guidance. Trade-offs include broader attack surface and API keys for multiple vendors, so you should enable only the providers you use. It is a multi-capability MCP bundle, not a curated minimal single-purpose server.
- Single MCP aggregating Brave, Google, and Tavily search
- Context7 and dev-oriented doc lookup in the same server (version 2.2.2)
- AWS, database, and GitHub tooling for infra and repo operations from the agent
- Excalidraw and Playwright coverage for diagrams and browser automation
- DevTools bundle aimed at reducing per-integration MCP boilerplate for solo devs
OneTool MCP by the numbers
- Data as of Aug 28, 2026 (Skillselion catalog sync)
Add a OneTool MCP badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
Get the embed code
| repo stars | ★ 23 |
|---|---|
| Last updated | August 27, 2026 |
| Repository | beycom/onetool-mcp ↗ |
What does OneTool MCP do?
Replace a pile of separate MCP configs with one server that bundles search, docs, cloud, diagrams, databases, GitHub, devtools, and Playwright for daily agent-driven development.
Who is OneTool MCP for?
Best when you want one MCP hub while building full-stack or agent-assisted products and already use several of the bundled services.
Skip if: Minimal-security environments that require one MCP per vendor, or developers who only need a single API (e.g. GitHub alone).
What does OneTool MCP produce?
One registered OneTool MCP connection gives your agent unified access to the listed dev, search, cloud, and browser tools during implementation.
- Unified agent access to listed search, cloud, repo, DB, diagram, and browser tools
- Fewer MCP config files to maintain across projects
- Faster iterative build loops without swapping MCP servers per task
- Advertised bundle: Brave, Google, Tavily, Context7, AWS, Excalidraw, DB, GitHub, DevTools, Playwright (10 named capabili
- Server version 2.2.2 in server manifest
- Repository: github.com/beycom/onetool-mcp
What does the OneTool MCP README cover?
README.md
🧿 One MCP for developers - No tool tax, no context rot.
100+ tools including Brave, Google, Context7, Excalidraw, Version Checker, Excel, File Ops, Database, Image Vision, Playwright & Chrome DevTools Utils and many more.
Works with Claude Code or any MCP client
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:
__run 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 ~/.onetool
Add to Claude Code:
claude mcp add onetool -- onetool serve --config ~/.onetool/onetool.yaml --secrets ~/.onetool/secrets.yaml
Or manually add to ~/.claude/mcp.json:
{
"mcpServers": {
"onetool": {
"command": "onetool",
"args": ["serve", "--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
Use from the CLI
Works as an MCP server and as a direct CLI bridge into a running MCP process. Useful for agent harnesses, scripts, and automation:
# Recommended local MCP root mode: stdio
onetool serve --config .onetool/onetool.yaml
# URL-based MCP root mode for containerized clients
onetool serve --transport http --config .onetool/onetool.yaml --host 127.0.0.1 --port 8767 --path /mcp
# Enable the MCP-owned direct API in onetool.yaml:
# direct.host.enabled: true
# Start OneTool as MCP, then use the port printed in startup logs.
onetool direct run --port 8765 "ot.packs()" --format json | jq '.[0].name'
onetool direct run --port 8765 "brave.search(query='latest AI news')" --format raw
Features
| Feature | Description |
|---|---|
| 96% Token Savings | ~2K tokens no matter how many tools you add |
| 100+ Built-in Tools | Web search, databases, file ops, diagrams, conversions |
| Explicit Execution | See exactly what runs — __run brave.search(q="AI") |
| 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 secrets.yaml backed by your OS keychain |
| Forge Tools | Build new tools as part of the conversation |
| Image Vision | Routes to a cheaper, better vision model via ot_image (img). Zero host tokens. Supports local files, URLs, clipboard; PNG, JPEG, GIF, WebP, TIFF, HEIC, AVIF, SVG. |
| Smart Context | ot_context (ctx) — SQLite+FTS5 store. Search and navigate large outputs without filling the context window. |
| Caveman Compact | ot_caveman (cm) — LLM-powered text compaction. 55–65% on tech prose, 25–31% on search results, 45–55% on conversational prose. __compact__ = True applies it to any tool call. Code blocks, URLs, and security warnings are never modified. |
| 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 |
|---|---|---|---|
brave |
search, news |
[util] |
Web and news search |
chrome_util |
highlight_element, guide_user |
[dev] |
Browser annotations (DevTools) |
context7 |
search, doc |
[dev] |
Library documentation |
convert |
pdf_to_md, docx_to_md, pptx_to_md |
[util] |
Document conversion |
db |
query, schema, tables, sample |
[dev] |
Database operations |
diagram |
create, get_playground_url |
[dev] |
Mermaid / Kroki diagrams |
excel |
read, write, query |
[util] |
Excel files |
file |
read, write, grep, slice, toc |
[util] |
File operations |
ground |
search |
[util] |
Google Grounding search |
knowledge |
search, ask, write, read, grep |
[util] |
RAG knowledge base (FTS5+vector) |
mem |
write, read, search, grep, ask, inspect, query |
[util] |
Persistent memory |
ot_forge |
create_ext, validate_ext, install_skills |
Scaffold new tool packs | |
ot_context (ctx) |
write, read, search, grep, slice, toc |
Smart context store (SQLite+FTS5) | |
ot_caveman (cm) |
compact, expand, input |
LLM-powered text compaction and expansion | |
ot_image (img) |
load, load_batch, ask, summary, list, delete, purge |
[util] |
Image vision via dedicated model |
ot_llm |
transform, transform_file |
LLM-powered transforms | |
ot_secrets |
init, encrypt, audit, rotate |
Secrets encryption | |
ot_timer |
start, elapsed, list |
Named timers | |
ot |
help, tools, stats, skills |
Introspection | |
package |
npm, pypi, cargo |
[dev] |
Package versions |
play_util |
highlight_element, guide_user |
[dev] |
Browser annotations (Playwright) |
ripgrep |
search, count |
[dev] |
Fast code search |
tavily |
search, search_batch, research |
[util] |
AI-native search |
webfetch |
fetch, fetch_batch |
[dev] |
Web fetching |
whiteboard |
open, draw, screenshot, save |
[dev] |
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:
local_tools:
type: stdio
command: npx
args: ["-y", "some-mcp-server@latest"]
private_api:
type: http
url: ${PRIVATE_MCP_URL}
auth:
type: bearer
token: ${PRIVATE_MCP_TOKEN}
__run private_api.read_resource(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")
__run 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
Browse every Claude Code MCP server, ranked by GitHub stars.
Which MCP servers are related to OneTool MCP?
How does OneTool MCP compare?
All-in-one dev MCP aggregator, not a focused RDL or mobile-UI specialty server.
OneTool MCP FAQ
Who is OneTool MCP for?
Developers using Claude Code, Cursor, or similar agents who want search, docs, AWS, DB, GitHub, diagrams, and Playwright behind one MCP.
When should I use OneTool MCP?
Use it during Build integrations when your agent routinely hits multiple external tools in one session and you want one config instead of many.
How do I add OneTool MCP to my agent?
Follow setup on onetool.beycom.online and github.com/beycom/onetool-mcp, then add the server entry your client expects with API keys for the providers you enable.