drio
Open app

mcp

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP (Multi-Channel Protocol) is a server sample project designed to work with the Cline extension in Visual Studio Code, enabling developers to run and manage multiple server instances easily.

To use MCP, install the necessary dependencies using bun install, then run the server with bun run index.ts. Additionally, configure the MCPServer settings in VSCode to enable server management.

  • Easy installation and setup with Bun - Integration with Visual Studio Code for server management - Customizable server configurations
  1. Running multiple server instances for development purposes.
  2. Managing server configurations directly from VSCode.
  3. Streamlining the development workflow with integrated tools.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "cline-mcp-server-sample-hymnk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cline-mcp-server-sample-hymnk"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "cline-mcp-server-sample-hymnk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cline-mcp-server-sample-hymnk"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "cline-mcp-server-sample-hymnk": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cline-mcp-server-sample-hymnk"
      ]
    }
  }
}

FAQ

What is Bun?

Bun is a fast all-in-one JavaScript runtime that simplifies the development process.

How do I install the Cline extension?

Search for "Cline" in the VSCode Extensions Marketplace and click "Install".

Can I customize the server settings?

Yes! You can modify the `cline_mcp_settings.json` file to customize your server configurations.