Dregen612/forgemcp
Managed MCP infrastructure — give your AI agents production-ready tools
Platform-specific configuration:
{
"mcpServers": {
"forgemcp": {
"command": "npx",
"args": [
"-y",
"forgemcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> Give your AI agents production-ready tools — without building them yourself.
ForgeMCP is managed MCP (Model Context Protocol) infrastructure. Instead of spending days building web search, code execution, and data storage into your AI agent, connect to ForgeMCP in minutes.
# Register → Get API key → Connect your agent
# That's it.When your AI agent needs to do something in the real world — search the web, run code, store data, track events — it calls ForgeMCP instead of you building it. We handle the infrastructure, reliability, rate limits, and billing.
| Tool | What it does | Cost | |------|-------------|------| | web_search | Real-time web search with answers | $0.001/req | | url_fetch | Fetch + extract readable content from any URL | Free | | code_execute | Sandboxed JavaScript execution | $0.01/call | | data_store | Per-agent key-value storage | Free | | analytics_track | Event tracking + queries | Free | | weather | Current weather for any location | Free |
# 1. Get an API key (free tier: 1,000 requests/month)
curl -X POST https://api.forgemcp.com/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com", "password": "yourpass123"}'
# 2. List available tools
curl https://api.forgemcp.com/v1/tools \
-H "Authorization: Bearer bk_forge_..."
# 3. Execute a tool
curl -X POST https://api.forgemcp.com/v1/tools/weather/execute \
-H "Authorization: Bearer bk_forge_..." \
-H "Content-Type: application/json" \
-d '{"location": "Minneapolis"}'Add to your Claude Code mcp.json
Loading reviews...