drio
Open app

Model Context Protocol (MCP) Servers

Source

Collection of Model Context Protocol (MCP) servers for Cursor IDE integration

Catalog onlyCatalog onlySTDIO

Overview

MCP (Model Context Protocol) servers allow AI coding assistants in Cursor IDE to interact with external tools and services, extending their capabilities by providing access to additional context, data, and functionality.

To use these servers with Cursor IDE, open Cursor IDE, go to Settings > Extensions > MCP, add the server configuration (examples provided in each server's README), and save and restart Cursor.

  • FileSystem Server for local file management - Memory Server for persistent memory storage - Brave Search Server for web search capabilities - Fetch Server for data retrieval from external APIs - Task Manager Server for contextual task management
  1. Enhancing AI coding assistants with file system access
  2. Maintaining context across coding sessions with memory storage
  3. Enabling web search for coding assistance
  4. Fetching data from APIs for real-time coding support
  5. Managing tasks with contextual awareness in development environments

Add to your AI client

Use these steps to connect Model Context Protocol (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": {
    "mcp-servers-grandmasterk414": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-grandmasterk414"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

How do I deploy these servers?

You can deploy these servers using Smithery. Refer to the SMITHERY_SETUP.md for detailed instructions.

Can I contribute to this project?

Yes! Contributions are welcome, and you can submit a Pull Request.

What is the license for this project?

This project is licensed under the MIT License.