MCP Catalogs
首页

filesystem vs jira-mcp-server

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

filesystem
by modelcontextprotocol
jira-mcp-server
by ParasSolanki
Stars★ 85,748★ 3
30天用量
综合分7730
官方
分类
本地文件系统开发者工具效率工具
开发者工具效率工具沟通协作
实现语言TypeScriptTypeScript
最近提交本月13 个月前

filesystem · 概述

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

jira-mcp-server · 概述

MCP 服务器实现 Jira API 集成,提供项目、看板、冲刺和问题列表工具。

filesystem · 使用场景

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

jira-mcp-server · 使用场景

  • LLM 助手可以通过 Jira 查询检索项目状态和进度
  • 直接从 AI 应用程序自动执行 Jira 问题管理
  • 生成关于冲刺进度和工作分布的报告

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

jira-mcp-server · 安装

安装

前提条件

  • Node.js 版本 22.12.0 或更高
  • Jira 个人访问令牌

Claude Desktop 配置

将以下服务器配置添加到您的 Claude Desktop 配置文件中:

  • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: [配置指南](https://gist.github.com/feveromo/7a340d7795fca1ccd535a5802b976e1f)
{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "@parassolanki/jira-mcp-server@latest"],
      "env": {
        "JIRA_PERSONAL_ACCESS_TOKEN": "email@example.com:your_personal_jira_access_token",
        "JIRA_BASE_URL": "jira_base_url"
      }
    }
  }
}

Windows 用户请使用以下配置:

{
  "mcpServers": {
    "jira": {
      "command": "cmd /c npx",
      "args": ["-y", "@parassolanki/jira-mcp-server@latest"],
      "env": {
        "JIRA_PERSONAL_ACCESS_TOKEN": "email@example.com:your_personal_jira_access_token",
        "JIRA_BASE_URL": "jira_base_url"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。