drio
Open app

Discover Exceptional MCP Servers

Source

Discover Exceptional MCP Servers

Catalog onlyCatalog onlySTDIO

Overview

MCPSvr is a community-driven directory platform designed to help developers discover and share exceptional MCP (Model Context Protocol) servers.

To use MCPSvr, developers can browse the directory of registered MCP servers or submit their own server configurations via GitHub pull requests.

  • Centralized repository for MCP server configurations - Contribution guidelines for easy submission of new servers - Standardized configuration schema for server setup
  1. Discovering innovative MCP servers for various applications.
  2. Contributing to the community by sharing custom MCP server configurations.
  3. Accessing a structured format for server parameters and execution environments.

Add to your AI client

Use these steps to connect Discover Exceptional MCP Servers 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": {
    "mcpsvr-nanbingxyz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpsvr-nanbingxyz"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcpsvr-nanbingxyz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpsvr-nanbingxyz"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcpsvr-nanbingxyz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpsvr-nanbingxyz"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcpsvr-nanbingxyz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpsvr-nanbingxyz"
      ]
    }
  }
}

FAQ

How can I submit a new MCP server?

You can submit a new server by creating a pull request with your server configuration in the centralized repository.

Are there guidelines for server configuration?

Yes! There are specific guidelines and a schema to follow for submitting server configurations.

Can I access the MCP servers without contributing?

Yes, you can browse the directory of MCP servers without needing to submit your own.