rails-ai-context vs everything
Side-by-side comparison to help you pick between these two MCP servers.
rails-ai-context by crisnahine | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 139 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsDatabase | Developer ToolsAI / LLM ToolsOther |
| Language | Ruby | TypeScript |
| Last commit | 1 mo ago | this month |
rails-ai-context · Summary
38 MCP tools providing AI agents with direct access to Rails app schema, models, routes & conventions.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
rails-ai-context · Use cases
- AI assistants writing Rails code that matches actual schema rather than inventing non-existent columns
- Generating tests that match your existing patterns (fixtures vs factories)
- Finding all callers of a method across the codebase to understand impact
- Analyzing features across models, controllers, views, and tests in one call
- Understanding view components, Stimulus controllers, and frontend stack conventions
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
rails-ai-context · Install
Installation
Option 1: As a gem (recommended)
gem "rails-ai-context", group: :development
rails generate rails_ai_context:installOption 2: Standalone (no Gemfile needed)
gem install rails-ai-context
cd your-rails-app
rails-ai-context init # interactive setup
rails-ai-context serve # start MCP serverClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"rails-ai-context": {
"command": "rails",
"args": ["ai:serve"],
"env": {}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything