mcp-cli

rover-app/mcp-cli

3.2

If you are the rightful owner of mcp-cli and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Rover MCP is a package that integrates with Rover's MCP SSE endpoint, enabling the use of Curio with any MCP client supporting the `stdio` transport.

Rover MCP

This package wraps Rover's MCP SSE endpoint, allowing you to use Curio with any MCP client with support for the stdio transport. You can generate an API key from your Rover dashboard.

Configuration examples

You may have to specify absolute paths in the command field below. If you don't have a JavaScript runtime installed, you can grab a binary from the latest release instead (you will have to manually update it).

In Zed

If you're using Zed, you can install the Rover Zed extension through the Zed extension registry. This is the recommended way to install the Rover MCP server with Zed.

Using npx

{
  "mcpServers": {
    "rover": {
      "command": "npx",
      "args": ["-y", "@getrover/mcp-cli@latest"],
      "env": {
        "ROVER_API_KEY": "<rak-xxxxxx...>"
      }
    }
  }
}

Using bunx

{
  "mcpServers": {
    "rover": {
      "command": "bunx",
      "args": ["--bun", "@getrover/mcp-cli@latest"],
      "env": {
        "ROVER_API_KEY": "<rak-xxxxxx...>"
      }
    }
  }
}

Using the binary

# Optionally, put the file somewhere on your path
$ wget -O rover-mcp https://github.com/rover-app/mcp-cli/releases/latest/download/rover-mcp-<os>-<arch>
$ chmod +x rover-mcp
{
  "mcpServers": {
    "rover": {
      "command": "/path/to/rover-mcp",
      "env": {
        "ROVER_API_KEY": "<rak-xxxxxx...>"
      }
    }
  }
}