mcp-server-chart vs rails-ai-context
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | rails-ai-context by crisnahine | |
|---|---|---|
| Stars | ★ 4,068 | ★ 139 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsDatabase |
| Language | TypeScript | Ruby |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
rails-ai-context · Summary
38 MCP tools providing AI agents with direct access to Rails app schema, models, routes & conventions.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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": {}
}
}
}