13 production-ready tools for AI agents — one API key, zero complexity. Docs · Playground · OpenAPI Spec · npm Building AI agents that interact with the real world? You'd normally need: No credit card. No setup. 13 endpoints ready to use. Use Agent Toolbox as an MCP server in Claude Desktop, Cursor, or Windsurf: Add to Claude Desktop config: See MCP Quickstart Guide for full setup instructions. Al
Add this skill
npx mdskills install Vincentwei1021/agent-toolboxComprehensive MCP server unifying 13 production-ready tools with excellent documentation and examples
1<div align="center">23# ⚡ Agent Toolbox45**13 production-ready tools for AI agents — one API key, zero complexity.**67[](https://www.npmjs.com/package/agent-toolbox-mcp)8[](https://pypi.org/project/langchain-agent-toolbox/)9[](LICENSE)10[](https://api.toolboxlite.com/docs)11[](https://glama.ai/mcp/servers/@Vincentwei1021/agent-toolbox)1213[Docs](https://api.toolboxlite.com/docs) · [Playground](https://api.toolboxlite.com/playground) · [OpenAPI Spec](https://api.toolboxlite.com/openapi.json) · [npm](https://www.npmjs.com/package/agent-toolbox-mcp)1415</div>1617---1819## Why Agent Toolbox?2021Building AI agents that interact with the real world? You'd normally need:2223| Without Agent Toolbox | With Agent Toolbox |24|---|---|25| 6+ API keys (Google, OpenWeatherMap, Yahoo Finance, ...) | **1 API key** |26| Different auth methods per service | **Unified Bearer auth** |27| Parse different response formats | **Consistent JSON responses** |28| Handle rate limits per provider | **Built-in rate limiting** |29| No caching, redundant calls | **Smart LRU caching** |30| Pay $50-200+/mo for APIs | **Free tier: 1,000 calls/mo** |3132## Quick Start (30 seconds)3334### 1. Get your free API key3536```bash37curl -X POST https://api.toolboxlite.com/v1/auth/register \38 -H "Content-Type: application/json" \39 -d '{"email": "you@example.com"}'40```4142### 2. Make your first call4344```bash45curl -X POST https://api.toolboxlite.com/v1/search \46 -H "Authorization: Bearer YOUR_API_KEY" \47 -H "Content-Type: application/json" \48 -d '{"query": "best AI agent frameworks"}'49```5051### 3. That's it! 🎉5253No credit card. No setup. 13 endpoints ready to use.5455## 13 Endpoints5657| Endpoint | Description | Cache |58|----------|-------------|-------|59| `POST /v1/search` | Web search via DuckDuckGo | 5 min |60| `POST /v1/extract` | Extract content from any URL | 5 min |61| `POST /v1/screenshot` | Capture webpage screenshots | 1 hr |62| `POST /v1/weather` | Weather & forecast | 15 min |63| `POST /v1/finance` | Stock quotes & exchange rates | 15 min |64| `POST /v1/validate-email` | Email validation (MX + SMTP) | 1 hr |65| `POST /v1/translate` | Translate 100+ languages | 1 hr |66| `POST /v1/geoip` | IP geolocation lookup | 1 hr |67| `POST /v1/news` | News article search | 5 min |68| `POST /v1/whois` | Domain WHOIS lookup | 1 hr |69| `POST /v1/dns` | DNS record queries | 5 min |70| `POST /v1/pdf-extract` | Extract text from PDFs | 1 hr |71| `POST /v1/qr` | Generate QR codes | 24 hr |7273## MCP Server7475Use Agent Toolbox as an MCP server in Claude Desktop, Cursor, or Windsurf:7677```bash78npm install -g agent-toolbox-mcp79```8081Add to Claude Desktop config:8283```json84{85 "mcpServers": {86 "agent-toolbox": {87 "command": "agent-toolbox-mcp"88 }89 }90}91```9293See [MCP Quickstart Guide](examples/mcp-quickstart/) for full setup instructions.9495## SDK Integrations9697### Python — LangChain9899```bash100pip install langchain-agent-toolbox101```102103```python104from langchain_agent_toolbox import AgentToolboxSearchTool105106search = AgentToolboxSearchTool()107result = search.invoke({"query": "AI agents", "count": 3})108```109110### Python — LlamaIndex111112```bash113pip install llamaindex-agent-toolbox114```115116```python117from llamaindex_agent_toolbox import AgentToolboxSearchTool118119search = AgentToolboxSearchTool()120result = search.call(query="AI agents", count=3)121```122123## Examples124125| Example | Description |126|---------|-------------|127| [Research Agent](examples/research-agent/) | Auto-research any topic → markdown report |128| [Website Monitor](examples/website-monitor/) | Monitor sites with DNS + screenshots + content |129| [MCP Quickstart](examples/mcp-quickstart/) | Claude Desktop / Cursor / Windsurf setup |130131## Pricing132133| Plan | Price | Calls/month | Rate Limit |134|------|-------|-------------|------------|135| **Free** | $0 | 1,000 | 60/min |136| **Pro** | $29/mo | 50,000 | 120/min |137| **Scale** | $99/mo | 500,000 | 300/min |138139All plans include all 13 endpoints. No feature gating.140141## Self-Hosting142143```bash144git clone https://github.com/Vincentwei1021/agent-toolbox.git145cd agent-toolbox146npm install && npm run build147cp .env.example .env # Add your config148npm start149```150151Or with Docker:152153```bash154docker build -t agent-toolbox .155docker run -p 3100:3100 --env-file .env agent-toolbox156```157158## Used By159160> *Building with Agent Toolbox? [Open an issue](https://github.com/Vincentwei1021/agent-toolbox/issues) to get listed here.*161162## License163164MIT © [Vincentwei1021](https://github.com/Vincentwei1021)165
Full transparency — inspect the skill content before installing.