drio
Open app

🌱 mcp-origin

Source

MCP server that manages MCP servers

Catalog onlyCatalog onlySTDIO

Overview

MCP-origin is a management tool for MCP servers that allows users to connect and manage multiple MCP servers through a single proxy.

To use mcp-origin, run the command npx binrun github.com/dstotijn/mcp-origin@latest in your terminal to start the MCP server management.

  • Connect to multiple MCP servers via a single MCP proxy. - Proxy tool calls to the appropriate server using a consistent naming scheme. - Store server configurations in a simple JSON configuration file. - Automatic tool discovery and registration from connected MCP servers.
  1. Managing multiple MCP servers from a single interface.
  2. Simplifying the process of connecting and configuring MCP servers.
  3. Facilitating tool discovery and registration for developers working with MCP servers.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Can mcp-origin connect to any MCP server?

Yes! mcp-origin is designed to connect to multiple MCP servers as long as they follow the MCP protocol.

Is there a graphical interface for mcp-origin?

No, mcp-origin is currently a command-line tool.

What programming language is mcp-origin written in?

mcp-origin is written in Go.