CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

OneTool MCP

beycom/onetool-mcp
20registry active
Summary

OneTool solves the MCP token tax problem by exposing 100+ tools through a single server instead of dozens. Instead of loading tool definitions that burn 3K-30K tokens per server, your agent writes Python code like `__run brave.search(query="react docs")` to call tools on demand. You get Brave search, Google Grounding, Tavily, Context7 docs, database queries, Excalidraw diagrams, file operations, Excel handling, Playwright browser automation, and Chrome DevTools utilities all from one connection. It includes smart context stores backed by SQLite FTS5, image vision routing to cheaper models, and LLM-powered text compaction. The architecture cuts token overhead by 96% compared to running separate MCP servers for each capability, which matters when you're paying per million tokens.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

OneTool

🧿 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.

PyPI License Python GitHub stars

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%"

— Anthropic Engineering

96% fewer tokens. 30× lower cost. No context rot.

📖 Read the full story


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

📖 Full installation guide


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

📖 Direct usage guide


Features

FeatureDescription
96% Token Savings~2K tokens no matter how many tools you add
100+ Built-in ToolsWeb search, databases, file ops, diagrams, conversions
Explicit ExecutionSee exactly what runs — __run brave.search(q="AI")
Live WhiteboardDraw diagrams with a Mermaid-compatible DSL via Excalidraw
MCP Server ProxyWrap existing MCP servers without the tool tax
Encrypted Secretsage-encrypted secrets.yaml backed by your OS keychain
Forge ToolsBuild new tools as part of the conversation
Image VisionRoutes 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 Contextot_context (ctx) — SQLite+FTS5 store. Search and navigate large outputs without filling the context window.
Caveman Compactot_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 ToolsDelegate to cheaper LLMs (10× savings)
Security LayersAST validation, path boundaries, output sanitisation

Tools

27+ packs, 230+ tools ready to use:

PackToolsExtraDescription
bravesearch, news[util]Web and news search
chrome_utilhighlight_element, guide_user[dev]Browser annotations (DevTools)
context7search, doc[dev]Library documentation
convertpdf_to_md, docx_to_md, pptx_to_md[util]Document conversion
dbquery, schema, tables, sample[dev]Database operations
diagramcreate, get_playground_url[dev]Mermaid / Kroki diagrams
excelread, write, query[util]Excel files
fileread, write, grep, slice, toc[util]File operations
groundsearch[util]Google Grounding search
knowledgesearch, ask, write, read, grep[util]RAG knowledge base (FTS5+vector)
memwrite, read, search, grep, ask, inspect, query[util]Persistent memory
ot_forgecreate_ext, validate_ext, install_skillsScaffold new tool packs
ot_context (ctx)write, read, search, grep, slice, tocSmart context store (SQLite+FTS5)
ot_caveman (cm)compact, expand, inputLLM-powered text compaction and expansion
ot_image (img)load, load_batch, ask, summary, list, delete, purge[util]Image vision via dedicated model
ot_llmtransform, transform_fileLLM-powered transforms
ot_secretsinit, encrypt, audit, rotateSecrets encryption
ot_timerstart, elapsed, listNamed timers
othelp, tools, stats, skillsIntrospection
packagenpm, pypi, cargo[dev]Package versions
play_utilhighlight_element, guide_user[dev]Browser annotations (Playwright)
ripgrepsearch, count[dev]Fast code search
tavilysearch, search_batch, research[util]AI-native search
webfetchfetch, fetch_batch[dev]Web fetching
whiteboardopen, 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")

📖 Configuration guide


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)")

📖 Creating tools guide


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:

Ko-fi


License

GPLv3

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Web & Browser AutomationCloud & InfrastructureDeveloper ToolsDesign & CreativeSearch & Web Crawling
Registryactive
UpdatedApr 3, 2026
View on GitHub

Related Web & Browser Automation MCP Servers

View all →
Browser Use

therealtimex/browser-use

AI browser automation - navigate, click, type, extract content, and run autonomous web tasks
Fetcher

jae-jae/fetcher-mcp

Fetch web page content using a Playwright headless browser with intelligent content extraction and Markdown/HTML output.
1k
Puppeteer

merajmehrabi/puppeteer-mcp-server

This MCP server provides browser automation capabilities through Puppeteer, allowing interaction with both new browser instances and existing Chrome windows.
449
Playwright Mcp Server

com.thenextgennexus/playwright-mcp-server

Headless browser primitives for AI agents when sites need real JS rendering.
Browser

saik0s/mcp-browser-use

Provides a browser automation MCP server that lets AI assistants control a real browser for navigation, form interaction, data extraction, and more.
933
Browser Use

kontext-dev/browser-use-mcp-server

Browse the web, directly from Cursor etc.
822