MCP Catalogs
首页

rails-ai-context vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

rails-ai-context
by crisnahine
everything
by modelcontextprotocol
Stars★ 139★ 85,748
30天用量
综合分5077
官方
分类
开发者工具AI / LLM 工具数据库
开发者工具AI / LLM 工具其它
实现语言RubyTypeScript
最近提交1 个月前本月

rails-ai-context · 概述

38个 MCP 工具,为 AI 代理提供直接访问 Rails 应用架构、模型、路由和约定的能力。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

rails-ai-context · 使用场景

  • AI 助手编写与实际架构匹配的 Rails 代码,而不是编造不存在的列
  • 生成与现有模式匹配的测试(fixtures 与 factories)
  • 在整个代码库中查找方法的所有调用者以了解影响
  • 在一次调用中分析模型、控制器、视图和测试中的功能
  • 理解视图组件、控制器和前端栈约定

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

rails-ai-context · 安装

安装

选项 1:作为 gem 安装(推荐)

gem "rails-ai-context", group: :development
rails generate rails_ai_context:install

选项 2:独立安装(无需 Gemfile)

gem install rails-ai-context
cd your-rails-app
rails-ai-context init     # 交互式设置
rails-ai-context serve    # 启动 MCP 服务器

Claude Desktop 配置

添加到 claude_desktop_config.json

{
  "mcpServers": {
    "rails-ai-context": {
      "command": "rails",
      "args": ["ai:serve"],
      "env": {}
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。