drio
Open app

Roo MCP サーバー

Source

Catalog onlyCatalog onlySTDIO

Overview

Roo MCP Server is a server designed for Roo Code, providing essential tools for developers.

To use the Roo MCP Server, install Deno and start the server using the command deno task start. For development mode, use deno task dev to automatically restart on changes.

  • Provides tools for string length calculation, GitHub repository information retrieval, and issue management. - Supports testing with deno task test. - Easy integration with Roo Code through configuration.
  1. Calculating the length of strings in various applications.
  2. Retrieving information about GitHub repositories for project management.
  3. Managing GitHub issues for better collaboration.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "roo-mcp-server-taka-ganasu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-roo-mcp-server-taka-ganasu"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "roo-mcp-server-taka-ganasu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-roo-mcp-server-taka-ganasu"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "roo-mcp-server-taka-ganasu": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-roo-mcp-server-taka-ganasu"
      ]
    }
  }
}

FAQ

What is required to run Roo MCP Server?

You need to have Deno installed on your machine.

How do I configure Roo Code to use the server?

Edit the Roo Cline settings file to include the server configuration and restart Roo Cline.

Can I run tests on the server?

Yes, you can run tests using the command `deno task test`.