← All products
MCP
Forge MCP
Production MCP server starter: auth, tool registry, streaming, deploy configs.
★★★★★4.8 (47 reviews)
168+ soldDrop a product screenshot or banner
✓Full source, no obfuscation
✓12 months of updates
✓Unlimited client projects
✓14-day money-back guarantee
Everything a real Model Context Protocol server needs beyond the hello-world docs: OAuth + API-key auth, a typed tool registry, streaming responses, rate limiting, observability hooks, and one-command deploys.
Drop a screenshot
Drop a screenshot
Drop a screenshot
What's inside
✓Typed tool + resource registry
✓OAuth 2.1 and API-key auth built in
✓Streaming responses and progress events
✓Per-client rate limiting
✓Structured logging + tracing hooks
✓Works with Claude, ChatGPT, Cursor clients
✓Example servers: DB, filesystem, SaaS API
✓Deploy configs: Docker, Cloudflare, Fly.io
See it in code
TypeScript
registry.register('search_orders', {
input: z.object({ query: z.string() }),
auth: ['oauth', 'api_key'],
rateLimit: { perClient: 30, window: '1m' },
handler: async ({ query }) => db.orders.search(query),
});Stack
OAuth + API keysTyped tool registryStreamingObservability
GM
Built and personally maintained by Golam Mostafa — Top Rated Plus on Upwork, 12+ years shipping production web apps. Questions before buying? Reach me directly.
Customer reviews
★4.8· 47 reviews
CW
Chen Wei
Verified purchase★★★★★Jun 2026
Connected Claude and Cursor to our internal API in an afternoon. The typed registry catches schema drift before clients do.
LB
Lars Berg
Verified purchase★★★★★May 2026
The rate limiting saved us — an agent retry loop hit one tool 400 times and the server did not blink.