MCP Catalogs
首页

filesystem vs mcp-prompts-catalog

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

filesystem
by modelcontextprotocol
mcp-prompts-catalog
by sparesparrow
Stars★ 85,748★ 2
30天用量
综合分7732
官方
分类
本地文件系统开发者工具效率工具
AI / LLM 工具效率工具开发者工具
实现语言TypeScriptJavaScript
最近提交本月11 个月前

filesystem · 概述

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

mcp-prompts-catalog · 概述

MCP 生态系统的提示词集合,支持多种格式存储。

filesystem · 使用场景

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

mcp-prompts-catalog · 使用场景

  • 在团队环境中管理提示词库,防止碎片化
  • 按类别组织不同用例的提示词
  • 在 MCP 兼容应用程序中自动加载提示词

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

mcp-prompts-catalog · 安装

使用 npm 安装:

npm install @sparesparrow/mcp-prompts-catalog

在您的 MCP 项目中使用:

const {
  getPromptsDir,
  getCategories,
  listPrompts,
  loadPrompt,
} = require('@sparesparrow/mcp-prompts-catalog');

console.log(getPromptsDir()); // 提示词目录的绝对路径
console.log(getCategories()); // 类别列表
console.log(loadPrompt('development-system-prompt', 'general'));
对比内容由 README + GitHub 公开数据自动生成,定期更新。