{
"mcpServers": {
"rails-dev": {
"cwd": "/path/to/your/rails/project",
"command": "rails-dev-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for managing Rails development servers
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 280 days ago. 7 stars.
Will it work with my client?
Transport: stdio, sse. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Rails Dev Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that allows AI agents to manage Rails development servers. Start, stop, and monitor your Rails app directly from Claude!
gem install rails-dev-mcp
git clone https://github.com/obie/rails-dev-mcp.git
cd rails-dev-mcp
bundle install
rake install
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"rails-dev": {
"command": "rails-dev-mcp",
"cwd": "/path/to/your/rails/project"
}
}
}
The Rails Dev MCP integrates seamlessly with ClaudeOnRails. Add to your claude-swarm.yml:
mcps:
- name: rails-dev
type: stdio
command: rails-dev-mcp
args: []
Starts the Rails development server.
Parameters:
port (optional): Port number (default: 3000)Example:
Start the Rails server on port 3001
Stops the running Rails development server.
Example:
Stop the Rails server
Retrieves recent logs from the Rails server.
Parameters:
lines (optional): Number of log lines to retrieve (default: 50)notable_only (optional): Show only errors, warnings, and requestsExample:
Show me the last 100 lines from the Rails server logs
Show me only errors from the Rails logs
Checks the current status of the Rails development server.
Example:
Is the Rails server running?
# Run tests
bundle exec rspec
# Run linter
bundle exec rubocop
# Build gem
gem build rails-dev-mcp.gemspec
MIT License - see LICENSE file for details.