railway-mcp vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
railway-mcp by jason-tan-swe | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 72 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 43 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具运维基建AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
railway-mcp · 概述
一个用于 Railway.app 的 TypeScript MCP 服务器,可通过自然语言命令管理基础设施。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
railway-mcp · 使用场景
- 直接从 AI 助手部署和管理 Railway 服务
- 自动化基础设施配置和变量管理
- 通过自然语言查询监控部署并访问日志
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
railway-mcp · 安装
安装
前置条件
- Node.js 18+
- Railway 账户
- Railway API 令牌(在 https://railway.app/account/tokens 创建)
快速开始
**使用 Smithery(推荐):**
npx -y @smithery/cli install @jason-tan-swe/railway-mcp --client claude**Claude Desktop 手动安装:** 添加到配置文件(claude_desktop_config.json)中:
{
"mcpServers": {
"railway": {
"command": "npx",
"args": ["-y", "@jasontanswe/railway-mcp"],
"env": {
"RAILWAY_API_TOKEN": "your-railway-api-token-here"
}
}
}
}**Cursor 手动安装:**
- 转到 Cursor 设置 > MCP 部分
- 点击'添加新的 MCP 服务器'
- 命名为 'railway-mcp'
- 命令:
npx -y @jasontanswe/railway-mcp <RAILWAY_API_TOKEN>
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。