drio
Open app

mcp-box

Source

mcp-box for mcp server

Catalog onlyCatalog onlySTDIO

Overview

mcp-box is a tool designed for managing and interacting with MCP servers, providing a streamlined interface for developers.

To use mcp-box, clone the repository from GitHub, set up your MCP server, and follow the instructions in the README to configure and run the tool.

  • Simplified management of MCP servers - User-friendly interface for server interactions - Open-source with community support
  1. Managing multiple MCP server instances
  2. Automating server tasks and configurations
  3. Collaborating with team members on server management

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Is mcp-box free to use?

Yes! mcp-box is open-source and free to use under the MIT license.

Where can I find the documentation?

Documentation is available in the GitHub repository's README file.

Can I contribute to mcp-box?

Absolutely! Contributions are welcome, and you can submit pull requests on GitHub.