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 β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
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 47,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

doggychip/agentforge MCP server](https://glama.ai/mcp/servers/doggychip/agentforge/badges/score.svg)](https://glama.ai/mcp/servers/doggychip/agentforge) πŸ“‡ ☁️ - Unified API gateway and marketplace for 300+ AI agents.

README.md

AgentForge

One API key. 300+ AI agents. Zero configuration.

AgentForge is a unified API gateway and marketplace for AI agents. Use a single API key to access hundreds of AI agents β€” no need to manage individual API keys, authentication, or billing for each one.

Live Demo | API Docs | Browse Agents

Why AgentForge?

Most AI agent platforms make you manage separate API keys, auth flows, and billing for every agent you use. AgentForge gives you one key to rule them all.

  • Unified API β€” Call any agent through a single REST endpoint
  • - 300+ agents β€” Pre-loaded with trending agents from GitHub and HuggingFace
  • - Creator economy β€” Publish your own agents and earn revenue (90% creator share)
  • - Built for developers β€” RESTful API, streaming support, API key auth, rate limiting
  • - MCP support β€” Use AgentForge as a Model Context Protocol server to access all agents from Claude, Cursor, and other MCP clients
  • ## Quick Start
  • ### Use the API (no install needed)
  • ```bash

1. Get your API key at https://patreon.zeabur.app/#/settings/api-keys

2. Call any agent:

curl -X POST https://patreon.zeabur.app/api/agents/AGENT_ID/invoke \ -H "Authorization: Bearer af_k_your_key_here" \ -H "Content-Type: application/json" \ -d '{"messages": [{"role": "user", "content": "Hello!"}]}' ```

Python

          import requests
          response = requests.post(
              "https://patreon.zeabur.app/api/agents/AGENT_ID/invoke",
              headers={"Authorization": "Bearer af_k_your_key_here"},
              json={"messages": [{"role": "user", "content": "Hello!"}]}
          )
          print(response.json())

JavaScript

          const response = await fetch(
            "https://patreon.zeabur.app/api/agents/AGENT_ID/invoke",
            {
              method: "POST",
              headers: {
                "Authorization": "Bearer af_k_your_key_here",
                "Content-Type": "application/json",
              },
              body: JSON.stringify({
                messages: [{ role: "user", content: "Hello!" }],
              }),
            }
          );
          const data = await response.json();

MCP Server (Model Context Protocol)

AgentForge ships a built-in MCP server (mcp/server.ts) that exposes all 300+ agents as MCP tools. This lets any MCP-compatible client β€” Claude Desktop, Cursor, Continue, etc. β€” discover and invoke agents with zero extra configuration.

MCP Tools exposed

| Tool | Description | |------|-------------| | list_agents | List all agents on the marketplace (optional category/limit filter) | | get_agent | Get full details for a specific agent by ID | | invoke_agent | Invoke any agent with a chat-completion style messages array | | check_agent_health | Check the health/availability of a specific agent | | get_platform_stats | Retrieve aggregate platform statistics |

Running the MCP server locally

          git clone https://github.com/doggychip/agentforge.git
          cd agentforge
          npm install

          # Set your AgentForge API key (get one at https://patreon.zeabur.app/#/settings/api-keys)
          export AGENTFORGE_API_KEY=af_k_your_key_here

          # Start the MCP server (communicates over stdio)
          npm run mcp:start

Connecting to Claude Desktop

Add the following to your claude_desktop_config.json (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

          {
            "mcpServers": {
              "agentforge": {
                "command": "npx",
                "args": ["tsx", "/path/to/agentforge/mcp/server.ts"],
                "env": {
                  "AGENTFORGE_API_KEY": "af_k_your_key_here"
                }
              }
            }
          }

Restart Claude Desktop. You will now see AgentForge tools available in the MCP connector panel.

Connecting to other MCP clients

Any MCP client that supports stdio transport can connect to AgentForge:

          # Generic stdio invocation
          AGENTFORGE_API_KEY=af_k_your_key_here npx tsx /path/to/agentforge/mcp/server.ts

Environment variables for the MCP server

| Variable | Required | Description | |----------|----------|-------------| | AGENTFORGE_API_KEY | Yes (for invoke_agent) | Your AgentForge API key | | AGENTFORGE_BASE_URL | No | Override base URL (default: https://patreon.zeabur.app) |

Features

For Users

  • Browse and discover 300+ AI agents, tools, and APIs
  • - One API key to access all agents
  • - Free and paid agents with transparent pricing
  • - Streaming support for real-time responses
  • - Usage tracking and billing history
  • ### For Creators
  • - Publish unlimited agents with your own pricing
  • - 90% revenue share (10% platform fee)
  • - Stripe Connect payouts to your bank account
  • - Analytics dashboard with subscriber metrics
  • - API proxy β€” we handle auth, rate limiting, and billing
  • ### Platform
  • - Google OAuth + email/password authentication
  • - Two-factor authentication (TOTP)
  • - Rate limiting (1000 req/hour, 10000 req/day per key)
  • - Agent health monitoring
  • - Auto-import from GitHub trending and HuggingFace
  • ## API Endpoints
  • | Method | Endpoint | Description |
  • |--------|----------|-------------|
  • | POST | /api/agents/:id/invoke | Invoke an agent |
  • | GET | /api/agents | List all agents |
  • | GET | /api/agents/:id | Get agent details |
  • | GET | /api/agents/:id/health | Check agent health |
  • | GET | /api/stats | Platform statistics |
  • ## Self-Hosting
  • ### Prerequisites
  • - Node.js 20+
  • - PostgreSQL
  • ### Setup
  • ```bash

git clone https://github.com/doggychip/agentforge.git cd agentforge npm install

Set environment variables

export DATABASE_URL=postgresql://user:password@host:5432/agentforge

Start development server (auto-migrates and seeds)

npm run dev ```

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | DATABASE_URL | Yes | PostgreSQL connection string | | STRIPE_SECRET_KEY | No | Stripe API key for payments | | STRIPE_WEBHOOK_SECRET | No | Stripe webhook signing secret | | GOOGLE_CLIENT_ID | No | Google OAuth client ID | | GOOGLE_CLIENT_SECRET | No | Google OAuth client secret | | SMTP_HOST | No | SMTP server for emails | | SMTP_USER | No | SMTP username | | SMTP_PASS | No | SMTP password |

Deploy to Zeabur

  1. Push to GitHub
  2. 2. Create project in Zeabur
  3. 3. Import the repo + add PostgreSQL service
  4. 4. Zeabur auto-injects DATABASE_URL
  1. ## Tech Stack
  1. - Frontend: React 18, Tailwind CSS, shadcn/ui, TanStack Query, wouter
  • - Backend: Express 5, Drizzle ORM, Passport
  • - Database: PostgreSQL
  • - Payments: Stripe Connect
  • - Auth: bcrypt, Google OAuth, TOTP 2FA
  • - Deploy: Docker / Zeabur
  • - MCP: @modelcontextprotocol/sdk (TypeScript)
  • ## Project Structure
  • ```

agentforge/ β”œβ”€β”€ client/src/ # React frontend β”‚ β”œβ”€β”€ pages/ # Route pages β”‚ β”œβ”€β”€ components/ # Shared components β”‚ └── hooks/ # Auth, query hooks β”œβ”€β”€ mcp/ β”‚ └── server.ts # MCP server (5 tools over stdio) β”œβ”€β”€ server/ β”‚ β”œβ”€β”€ routes.ts # API endpoints β”‚ β”œβ”€β”€ storage.ts # Database layer β”‚ └── db.ts # Connection + migrations β”œβ”€β”€ shared/ β”‚ └── schema.ts # Drizzle schema + types └── Dockerfile ```

Contributing

Pull requests welcome. For major changes, open an issue first.

License

MIT

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

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