Turn any API
into an MCP server
Connect your app, define your tools, get a hosted MCP endpoint. No MCP code required. Ship AI integrations in minutes, not days.
From API to MCP
in three steps
No SDKs to install. No MCP protocol knowledge required. Just your existing API.
Connect
Point to your API base URL. We handle auth, headers, and request formatting.
Define
Map your endpoints to MCP tools. Set schemas, templates, and transformations.
Deploy
Get a hosted MCP endpoint. Connect Claude, Cursor, or any MCP client instantly.
Works with your
favorite tools
Connect your MCP endpoint to any client that supports the Model Context Protocol.
Claude Code
{
"mcpServers": {
"fuzemcp": {
"url": "https://api.fuzemcp.dev/mcp/your-project",
"type": "streamable-http",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}Add to ~/.claude/mcp.json or with: claude add mcp
Cursor
{
"mcpServers": {
"fuzemcp": {
"url": "https://api.fuzemcp.dev/mcp/your-project",
"type": "stremeable-http",
"headers": {
"Authorization": "Bearer ${env:MCP_TOKEN}"
}
}
}
}Settings → MCP → Add server or editing `~/.cursor/mcp.json
VS Code
{
"mcp": {
"servers": {
"fuzemcp": {
"type": "https",
"url": "https://api.fuzemcp.dev/mcp/your-project",
"headers": {
"Authorization": "Bearer ${env:MCP_TOKEN}"
}
}
}
}
}Add to .vscode/mcp.json
Windsurf
{
"mcpServers": {
"fuzemcp": {
"serverUrl": "https://api.fuzemcp.dev/mcp/your-project",
"headers": {
"Authorization": "Bearer <your-mcp-api-key>"
}
}
}
}Windsurf → Settings → MCP or editing ~/.codeium/mcp_config.json
OpenCode
{
"mcp": {
"fuzemcp": {
"url": "https://api.fuzemcp.dev/mcp/your-project",
"type": "remote",
"headers": {
"Authorization": "Bearer <your-mcp-api-key>"
}
}
}
}Add to opencode.jsonc or .opencode.json
Try it yourself
Call any of your defined MCP tools with a simple JSON-RPC request.
curl -X POST https://api.fuzemcp.dev/mcp/your-project \
-H "Authorization: Bearer <your-mcp-api-key>" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_product",
"arguments": { "reference": "BO8711827031109" }
}
}'Insights on MCP and AI
Guides, tutorials, and perspectives from the FuzeMCP team.
Stay in the loop
Get notified about new features and MCP guides.
Ready to fuse
your API with AI?
Join developers shipping AI integrations in minutes. No MCP experience required.
Get Started Free