drio
Open app

Claude-Code-MCP

Source

Claude Code MCP servers

Catalog onlyCatalog onlySTDIO

Overview

Claude-Code-MCP is a collection of the most suitable MCP (Multi-Cloud Platform) services for Claude AI, sourced from GitHub and various MCP service directories. It serves as an open-source project where developers can contribute their own MCP services.

To use Claude-Code-MCP, visit the GitHub repository to explore the available MCP services. If you have developed relevant services, you can submit them to the project for inclusion.

  • Aggregation of top MCP services for Claude AI - Open-source contributions from developers - Access to a community of MCP service providers
  1. Finding suitable MCP services for AI applications.
  2. Contributing to an open-source project for cloud services.
  3. Collaborating with other developers in the MCP ecosystem.

Add to your AI client

Use these steps to connect Claude-Code-MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "claude-code-mcp-boysoai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claude-code-mcp-boysoai"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "claude-code-mcp-boysoai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claude-code-mcp-boysoai"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "claude-code-mcp-boysoai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claude-code-mcp-boysoai"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "claude-code-mcp-boysoai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claude-code-mcp-boysoai"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "claude-code-mcp-boysoai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claude-code-mcp-boysoai"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "claude-code-mcp-boysoai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claude-code-mcp-boysoai"
      ]
    }
  }
}

FAQ

What is an MCP service?

An MCP service allows users to manage and utilize multiple cloud services seamlessly.

How can I contribute to the project?

You can submit your developed MCP services via the GitHub repository.

Is there a license for using the services?

The project is open-source, and you can check the repository for specific licensing details.