MCP Protocol → Your API

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.

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.

Works with your favorite tools

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

Claude

Claude Desktop

{
  "mcpServers": {
    "your-api": {
      "url": "https://api.fuzemcp.dev/mcp/your-project",
      "headers": {
        "Authorization": "Bearer <your-api-key>"
      }
    }
  }
}

Add to claude_desktop_config.json

Cursor

Cursor

{
  "mcpServers": {
    "your-api": {
      "url": "https://api.fuzemcp.dev/mcp/your-project",
      "headers": {
        "Authorization": "Bearer <your-api-key>"
      }
    }
  }
}

Settings → MCP → Add server

VS Code

VS Code

{
  "mcp": {
    "servers": {
      "your-api": {
        "type": "http",
        "url": "https://api.fuzemcp.dev/mcp/your-project"
      }
    }
  }
}

Add to .vscode/mcp.json

Windsurf

Windsurf

{
  "mcpServers": {
    "your-api": {
      "serverUrl": "https://api.fuzemcp.dev/mcp/your-project"
    }
  }
}

Windsurf → Settings → MCP

OpenCode

OpenCode

{
  "mcpServers": {
    "fuze-demo": {
      "url": "https://api.fuzemcp.dev/mcp/your-project",
      "headers": {
        "Authorization": "Bearer <your-mcp-api-key>"
      }
    }
  }
}

Add to opencode.json or .opencode.json

Example Request
POST /mcp/your-project
Authorization: Bearer <your-mcp-api-key>
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_product",
    "arguments": { "reference": "BO8711827031109" }
  }
}