drio
Open app

MCP Server Pool

Source

MCP 服务合集

Catalog onlyCatalog onlySTDIO

Overview

MCP Server Pool is a repository that contains various practical implementations of Model-Context-Protocol (MCP) services along with development tutorials from scratch.

To use MCP Server Pool, clone the repository from GitHub and follow the tutorials provided in the tutorial/ directory to develop your own MCP services.

  • Collection of MCP services for Git operations - Comprehensive tutorial for developing MCP services from scratch - Clear directory structure for easy navigation
  1. Implementing Git-related operations using MCP services.
  2. Learning how to develop custom MCP services.
  3. Contributing to the repository by adding new services or improving existing ones.

Add to your AI client

Use these steps to connect MCP Server Pool 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": {
    "mcp-servers-castbox": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-castbox"
      ]
    }
  }
}

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": {
    "mcp-servers-castbox": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-castbox"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-servers-castbox": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-castbox"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-servers-castbox": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-castbox"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-servers-castbox": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-castbox"
      ]
    }
  }
}

FAQ

What is MCP?

MCP stands for Model-Context-Protocol, a framework for building services.

Is there a tutorial for beginners?

Yes! The repository includes a complete tutorial for developing MCP services from scratch.

What are the environment requirements?

You need Python 3.10+ and the FastMCP library to get started.