Recydata

ROUND Marketplace MCP

Documentation MCP for the Round Marketplace API

This server exposes the OpenAPI 3.0.3 specification of the Round Marketplace API (v1.0.1) via the Model Context Protocol, providing tools for endpoint lookup, schema inspection, and semantic search. The goal is to enable seamless integration of the API documentation into code agents and LLM-powered developer tools, such as GitHub Copilot, Claude Code, and OpenAI Codex.

MCP Endpoint

https://mcp.register.round.be/mcp

Authentication

The server is protected by OAuth 2.1. On first connection, your client opens a browser window for sign-in and handles the token exchange automatically — no API keys or headers to configure.

Connecting from Code Agents

Claude Code

claude mcp add recydata --transport streamable-http mcp.register.round.be/mcp

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "recydata-mcp": {
      "url": "https://mcp.register.round.be/mcp"
    }
  }
}

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your project root:

{
  "servers": {
    "recydata-mcp": {
      "type": "http",
      "url": "https://mcp.register.round.be/mcp"
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "recydata-mcp": {
      "serverUrl": "https://mcp.register.round.be/mcp"
    }
  }
}

OpenAI Codex

codex mcp add recydata --url https://mcp.register.round.be/mcp

Gemini CLI

Add to your settings.json:

{
  "mcpServers": {
    "recydata-mcp": {
      "httpUrl": "https://mcp.register.round.be/mcp",
      "timeout": 5000
    }
  }
}

OpenCode

Add to opencode.jsonc:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "recydata-mcp": {
      "url": "https://mcp.register.round.be/mcp",
      "enabled": true
    }
  }
}

Generic MCP Client

Connect via Streamable HTTP transport at:

https://mcp.register.round.be/mcp

Available Tools

Once connected, the following MCP tools are available:

Health check Powered by Versile