- Home
- MCP servers
- Rovodev
Rovodev
- typescript
0
GitHub Stars
typescript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"jaggerxtrm-rovodev-mcp-tool": {
"command": "npx",
"args": [
"-y",
"@jaggerxtrm/rovodev-mcp-tool"
]
}
}
}You can run Rovodev as an MCP server to let MCP-compatible assistants access its code analysis and modeling capabilities over the MCP protocol. This server lets you execute Rovodev commands from your AI workflows, manage large contexts, and control how tool calls are approved and executed.
How to use
You use the Rovodev MCP server by connecting an MCP client to its stdio interface. Once connected, you can ask Rovodev to analyze code, summarize architectures, review security aspects, or optimize algorithms by sending prompts through the MCP channel. Include file references with @filename or @directory to inject file contents into Rovodev’s analysis. Choose a model and approval mode to control how the tool executes within your workflow.
Practical usage patterns include analyzing a specific file, surveying an entire codebase, requesting security reviews, or seeking optimization suggestions. You can also toggle debug mode to troubleshoot prompts and outputs. Make sure your MCP client forwards the prompt and any flags according to Rovodev’s tool configuration.
How to install
Prerequisites you need before installing Rovodev MCP server:
-
Node.js v16 or higher
-
Rovodev CLI configured on your system (acli rovodev)
Follow these steps to set up the MCP server locally. Run the commands exactly as shown.
/** Prerequisites verification and setup **/
# Ensure Rovodev CLI is installed and configured
# This step installs Rovodev CLI and sets up user config
# The actual installation steps vary by system; ensure acli rovodev is available in your PATH
# Example approval and setup commands may be provided by your environment
From Quick Setup (recommended)
claude mcp add rovodev-cli -- npx -y @jaggerxtrm/rovodev-mcp-tool
Manual configuration for Rovodev MCP server
If you prefer to configure Rovodev manually, add the MCP server configuration to your Rovodev setup so it can be called from MC clients.
# Example YAML for allowed MCP servers
mcp:
allowedMcpServers:
- stdio:npx:-y @jaggerxtrm/rovodev-mcp-tool # Add this line
From Source (Development)
Developers can set up the local development environment and build the MCP server locally.
git clone <repo-url>
cd rovodev-mcp-tool
npm install
Build and run locally
Build the project and link it for local development so you can test changes in place.
npm run build
npm link
Available tools
ask-rovodev
Main Rovodev interaction tool that sends prompts to Rovodev and returns analysis results, supports file references and model selection.
ping
Simple echo tool to verify the MCP connection.
help
Help tool to display usage information and available options.