drio
Open app

MCP Ecosystem Server Repository

Source

Catalog onlyCatalog onlySTDIO

Overview

The MCP Ecosystem Server Repository is a collection of essential and community-contributed servers designed for the MCP ecosystem, focusing on modular architecture and AI-driven extensibility.

To use the repository, developers can clone the repository from GitHub and contribute by adding new servers to the servers/community/ directory, following the contribution guidelines provided.

  • Modular architecture for easy integration and extension - Community-contributed servers for diverse functionalities - Comprehensive documentation for each server
  1. Building custom servers for specific applications within the MCP ecosystem.
  2. Contributing to community-driven projects and enhancing server capabilities.
  3. Utilizing core servers like Sentry, Time, SQLite, Git, and Fetch for various development needs.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

How can I contribute to the MCP Ecosystem Server Repository?

You can contribute by placing new servers in the `servers/community/` directory and following the development principles outlined in the repository.

What types of servers are included in the repository?

The repository includes core servers, community-contributed servers, and specialized or experimental servers.

Is the MCP Ecosystem Server Repository open-source?

Yes, the repository is open-source and encourages collaboration from developers.