drio
Open app

mcp_agent

Source

public server for mcp

Catalog onlyCatalog onlySTDIO

Overview

The mcp_agent is a public server designed for managing and facilitating the MCP (Multi-Channel Protocol) operations.

To use mcp_agent, access the public server through the provided GitHub link and follow the setup instructions to integrate it with your MCP applications.

  • Publicly accessible server for MCP operations - Easy integration with existing MCP applications - Community support and documentation available on GitHub
  1. Managing multiple channels in a unified platform.
  2. Facilitating communication between different MCP-enabled devices.
  3. Supporting developers in building MCP applications.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Is mcp_agent free to use?

Yes! mcp_agent is free to use for everyone.

What is MCP?

MCP stands for Multi-Channel Protocol, which allows for communication across various channels and devices.

Where can I find documentation for mcp_agent?

Documentation is available on the GitHub repository.