drio
Open app

Multichain MCP Server 🌐

Source

A MCP Server Route Hub connecting all MCP Servers

Catalog onlyCatalog onlySTDIO

Overview

Multichain MCP is a server route hub that connects all MCP servers, facilitating seamless communication and data exchange between them.

To use Multichain MCP, run the command npx create-turbo@latest to set up the Turborepo starter, which includes the necessary packages and applications.

  • Connects multiple MCP servers for efficient data routing. - Built with TypeScript for enhanced type safety. - Includes Next.js applications for documentation and web interface. - Provides ESLint and Prettier configurations for code quality.
  1. Integrating multiple blockchain networks for data sharing.
  2. Developing decentralized applications that require cross-chain communication.
  3. Setting up a robust server infrastructure for managing multiple MCP servers.

Add to your AI client

Use these steps to connect Multichain MCP Server 🌐 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": {
    "multichain-mcp-oraichain": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-multichain-mcp-oraichain"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of Multichain MCP?

It serves as a hub to connect various MCP servers, enabling efficient data routing and communication.

Is Multichain MCP easy to set up?

Yes! You can quickly set it up using the provided Turborepo starter commands.

What technologies are used in Multichain MCP?

It is built using TypeScript and includes Next.js for web applications.