MCP Catalogs
首页

filesystem vs airtable-mcp

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

filesystem
by modelcontextprotocol
airtable-mcp
by rashidazarang
Stars★ 85,748★ 80
30天用量
综合分7748
官方
分类
本地文件系统开发者工具效率工具
数据库效率工具AI / LLM 工具
实现语言TypeScriptTypeScript
最近提交本月3 个月前

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

airtable-mcp · 概述

功能全面的 Airtable MCP 服务器,提供完整的 CRUD 操作、架构管理和 AI 分析功能。

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

airtable-mcp · 使用场景

  • 基于 AI 的 Airtable 数据分析和报告生成
  • 数据库管理和 CRUD 操作的自然语言界面
  • 通过 Webhook 在 Airtable 和其他系统之间自动同步数据

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 中安装。

airtable-mcp · 安装

安装

**Claude Desktop:** 添加到您的 Claude Desktop 配置文件(macOS 上为 ~/Library/Application Support/Claude/claude_desktop_config.json 或 Windows 上为 %APPDATA%\Claude\claude_desktop_config.json):

{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": ["-y", "@rashidazarang/airtable-mcp"],
      "env": {
        "AIRTABLE_TOKEN": "您的 Airtable 令牌",
        "AIRTABLE_BASE_ID": "您的基础 ID"
      }
    }
  }
}

**Claude Code:** 一键安装:

curl -fsSL https://raw.githubusercontent.com/rashidazarang/airtable-mcp/main/setup.sh | bash

**手动配置:** 添加到 ~/.claude.json

{
  "airtable": {
    "type": "stdio",
    "command": "/bin/bash",
    "args": ["-c", "cd /tmp && npx -y @rashidazarang/airtable-mcp"],
    "env": {
      "AIRTABLE_TOKEN": "您的 Airtable 令牌"
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。