drio
Open app

Open MCP

Source

Collection of open Model Context Protocol (MCP) servers for your LLMs.

Catalog onlyCatalog onlySTDIO

Overview

Open MCP is a collection of open Model Context Protocol (MCP) servers designed for AI assistants like Claude, enabling them to interact with external tools and data sources.

To use Open MCP with Claude for Desktop, modify the configuration file to include the MCP servers, restart the application, and then you can ask Claude to utilize these tools.

  • Collection of open MCP servers for various AI assistants. - Allows real-time interaction with external tools and data sources. - Easy installation and configuration for users.
  1. Fetching quotes from Kanye West using the Kanye MCP server.
  2. Enabling AI assistants to access real-time information.
  3. Facilitating the development of custom MCP servers for specific tasks.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the Model Context Protocol (MCP)?

MCP is an open standard that allows AI assistants to interact with external tools and data sources.

Is Open MCP free to use?

Yes! Open MCP is open-source and free for everyone.

Can I contribute to Open MCP?

Absolutely! Contributions are welcome, and you can create your own MCP servers.