Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

agent-toolbox MCP server](https://glama.ai/mcp/servers/@Vincentwei1021/agent-toolbox/badges/score.svg)](https://glama.ai/mcp/servers/@Vincentwei1021/agent-toolbox) πŸ“‡ ☁️ 🍎 πŸͺŸ 🐧 - Production-ready MCP server providing 13 tools for AI agents: web search,...

README.md

<div align="center">

⚑ Agent Toolbox

13 production-ready tools for AI agents β€” one API key, zero complexity.

![npm](https://www.npmjs.com/package/agent-toolbox-mcp) ![PyPI](https://pypi.org/project/langchain-agent-toolbox/) ![License](LICENSE) ![Endpoints](https://api.toolboxlite.com/docs) ![Glama](https://glama.ai/mcp/servers/@Vincentwei1021/agent-toolbox)

Docs Β· Playground Β· OpenAPI Spec Β· npm

</div>

---

Why Agent Toolbox?

Building AI agents that interact with the real world? You'd normally need:

| Without Agent Toolbox | With Agent Toolbox | |---|---| | 6+ API keys (Google, OpenWeatherMap, Yahoo Finance, ...) | 1 API key | | Different auth methods per service | Unified Bearer auth | | Parse different response formats | Consistent JSON responses | | Handle rate limits per provider | Built-in rate limiting | | No caching, redundant calls | Smart LRU caching | | Pay $50-200+/mo for APIs | Free tier: 1,000 calls/mo |

Quick Start (30 seconds)

1. Get your free API key

curl -X POST https://api.toolboxlite.com/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}'

2. Make your first call

curl -X POST https://api.toolboxlite.com/v1/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "best AI agent frameworks"}'

3. That's it! πŸŽ‰

No credit card. No setup. 13 endpoints ready to use.

13 Endpoints

| Endpoint | Description | Cache | |----------|-------------|-------| | POST /v1/search | Web search via DuckDuckGo | 5 min | | POST /v1/extract | Extract content from any URL | 5 min | | POST /v1/screenshot | Capture webpage screenshots | 1 hr | | POST /v1/weather | Weather & forecast | 15 min | | POST /v1/finance | Stock quotes & exchange rates | 15 min | | POST /v1/validate-email | Email validation (MX + SMTP) | 1 hr | | POST /v1/translate | Translate 100+ languages | 1 hr | | POST /v1/geoip | IP geolocation lookup | 1 hr | | POST /v1/news | News article search | 5 min | | POST /v1/whois | Domain WHOIS lookup | 1 hr | | POST /v1/dns | DNS record queries | 5 min | | POST /v1/pdf-extract | Extract text from PDFs | 1 hr | | POST /v1/qr | Generate QR codes | 24 hr |

MCP Server

Use Agent Toolbox as an MCP server in Claude Desktop, Cursor, or Windsurf:

npm install -g agent-toolbox-mcp

Add to Claude Desktop config:

{
  "mcpServers": {
    "agent-toolbox": {
      "command": "agent-toolbox-mcp"
    }
  }
}

See MCP Quickstart Guide for full setup instructions.

SDK Integrations

Python β€” LangChain

pip install langchain-agent-toolbox
from langchain_agent_toolbox import AgentToolboxSearchTool

search = AgentToolboxSearchTool()
result = search.invoke({"query": "AI agents", "count": 3})

Python β€” LlamaIndex

pip install llamaindex-agent-toolbox
from llamaindex_agent_toolbox import AgentToolboxSearchTool

search = AgentToolboxSearchTool()
result = search.call(query="AI agents", count=3)

Examples

| Example | Description | |---------|-------------| | Research Agent | Auto-research any topic β†’ markdown report | | Website Monitor | Monitor sites with DNS + screenshots + content | | MCP Quickstart | Claude Desktop / Cursor / Windsurf setup |

Pricing

| Plan | Price | Calls/month | Rate Limit | |------|-------|-------------|------------| | Free | $0 | 1,000 | 60/min | | Pro | $29/mo | 50,000 | 120/min | | Scale | $99/mo | 500,000 | 300/min |

All plans include all 13 endpoints. No feature gating.

Self-Hosting

git clone https://github.com/Vincentwei1021/agent-toolbox.git
cd agent-toolbox
npm install && npm run build
cp .env.example .env  # Add your config
npm start

Or with Docker:

docker build -t agent-toolbox .
docker run -p 3100:3100 --env-file .env agent-toolbox

Used By

Building with Agent Toolbox? Open an issue to get listed here.

License

MIT Β© Vincentwei1021

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Search servers.