FuzeMCP - Turn any API into an MCP server | Product Hunt

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.

Works with Claude, Cursor, VS Code, and more
How it works

From API to MCP
in three steps

No SDKs to install. No MCP protocol knowledge required. Just your existing API.

01

Connect

Point to your API base URL. We handle auth, headers, and request formatting.

02

Define

Map your endpoints to MCP tools. Set schemas, templates, and transformations.

03

Deploy

Get a hosted MCP endpoint. Connect Claude, Cursor, or any MCP client instantly.


Integrations

Works with your
favorite tools

Connect your MCP endpoint to any client that supports the Model Context Protocol.

Claude

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

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

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

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

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


Example

Try it yourself

Call any of your defined MCP tools with a simple JSON-RPC request.

example.mcp
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" }
  }
}'
Returns product data instantly — no MCP infrastructure needed

Get started

Ready to fuse
your API with AI?

Join developers shipping AI integrations in minutes. No MCP experience required.

Get Started Free