MCP Catalogs
首页

filesystem vs agent-twitter-client-mcp

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

filesystem
by modelcontextprotocol
agent-twitter-client-mcp
by ryanmac
Stars★ 85,748★ 28
30天用量
综合分7744
官方
分类
本地文件系统开发者工具效率工具
沟通协作AI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交本月1 个月前

filesystem · 概述

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

agent-twitter-client-mcp · 概述

功能全面的 Twitter MCP 服务器,支持推文管理、用户交互和 Grok AI 集成。

filesystem · 使用场景

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

agent-twitter-client-mcp · 使用场景

  • 社交媒体管理,AI 代理用于发布、监控和分析 Twitter 内容
  • 与 AI 模型集成,通过 Grok 提供实时 Twitter 数据和趋势话题
  • 无需直接 Twitter API 访问即可实现自动化内容创作和互动

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

agent-twitter-client-mcp · 安装

安装

# 全局安装
npm install -g agent-twitter-client-mcp

# 或本地安装
npm install agent-twitter-client-mcp

Claude Desktop 配置

{
  "mcpServers": {
    "agent-twitter-client-mcp": {
      "command": "npx",
      "args": ["-y", "agent-twitter-client-mcp"],
      "env": {
        "AUTH_METHOD": "cookies",
        "TWITTER_COOKIES": "[\"auth_token=YOUR_AUTH_TOKEN; Domain=.twitter.com\", \"ct0=YOUR_CT0_VALUE; Domain=.twitter.com\", \"twid=u%3DYOUR_USER_ID; Domain=.twitter.com\"]"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。