MCP Catalogs
首页

filesystem vs MCPollinations

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

filesystem
by modelcontextprotocol
MCPollinations
by pinkpixel-dev
Stars★ 85,748★ 41
30天用量
综合分7745
官方
分类
本地文件系统开发者工具效率工具
AI / LLM 工具多媒体开发者工具
实现语言TypeScriptJavaScript
最近提交本月2 个月前

filesystem · 概述

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

MCPollinations · 概述

MCP 服务器,让 AI 助手通过 Pollinations API 生成图像、文本和音频。

filesystem · 使用场景

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

MCPollinations · 使用场景

  • 根据文本提示生成图像并以各种格式保存
  • 创建带有可定制语音的文本音频响应
  • 编辑现有图像或基于参考图像创建新图像

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

MCPollinations · 安装

安装

通过 Smithery 安装(推荐用于 Claude Desktop)

npx -y @smithery/cli install @pinkpixel-dev/mcpollinations --client claude

使用 npx(无需安装)

npx @pinkpixel-dev/mcpollinations

全局安装

npm install -g @pinkpixel-dev/mcpollinations
mcpollinations

从仓库克隆

git clone https://github.com/pinkpixel-dev/mcpollinations.git
cd mcpollinations
node pollinations-mcp-server.js

Claude Desktop 集成

添加到您的 Claude Desktop config.json:

{
  "mcpollinations": {
    "command": "npx",
    "args": ["-y", "@pinkpixel-dev/mcpollinations"],
    "env": {
      "token": "YOUR_TOKEN_OPTIONAL",
      "referrer": "your-app-or-domain-optional",
      "IMAGE_MODEL": "flux",
      "IMAGE_WIDTH": "1024",
      "IMAGE_HEIGHT": "1024",
      "OUTPUT_DIR": "./mcpollinations-output"
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。