drio
Open app

Model Context Protocol servers

Source

Model Context Protocol Servers - A collection of reference implementations for the Model Context Protocol (MCP)

Catalog onlyCatalog onlySTDIO

Overview

Model Context Protocol Servers is a collection of reference implementations for the Model Context Protocol (MCP), showcasing how it can be used to provide Large Language Models (LLMs) secure access to tools and data sources.

To use the servers, you can run them directly using npx for TypeScript-based servers or uvx/pip for Python-based servers. Configuration examples for clients like Claude Desktop are also provided in the documentation.

  • A variety of reference implementations demonstrating MCP features. - Support for both TypeScript and Python SDKs. - Integration with various third-party services and APIs. - Community-driven development with numerous community-built servers.
  1. Enabling LLMs to interact with databases and APIs securely.
  2. Automating tasks across different platforms using LLMs.
  3. Facilitating data retrieval and processing through LLMs.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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