MCP Catalogs
首页

filesystem vs jiraxmcp

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

filesystem
by modelcontextprotocol
jiraxmcp
by vaibhavpandeyvpz
Stars★ 85,748★ 1
30天用量
综合分7737
官方
分类
本地文件系统开发者工具效率工具
开发者工具效率工具沟通协作
实现语言TypeScriptTypeScript
最近提交本月1 个月前

filesystem · 概述

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

jiraxmcp · 概述

Jira MCP服务器,通过模型上下文协议提供问题管理、敏捷工具和webhook通知功能。

filesystem · 使用场景

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

jiraxmcp · 使用场景

  • 将Jira与AI助手集成,实现自动化问题跟踪和管理
  • 连接Jira工作流到AI驱动的开发环境
  • 在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 中安装。

jiraxmcp · 安装

安装

快速开始

  1. 导出您的Jira凭据:
export JIRA_HOST="https://your-domain.atlassian.net"
export JIRA_EMAIL="you@example.com"
export JIRA_API_TOKEN="your-api-token"

或使用访问令牌:

export JIRA_HOST="https://your-domain.atlassian.net"
export JIRA_ACCESS_TOKEN="your-access-token"
  1. 启动MCP服务器:
npx jiraxmcp mcp
  1. 如果您需要入站Jira webhook事件,请启用通道:
npx jiraxmcp mcp --channels

Claude Desktop配置

添加到您的Claude Desktop配置文件config.json中:

"mcpServers": {
  "jira": {
    "command": "npx",
    "args": ["jiraxmcp", "mcp"]
  }
}

要支持webhook,请在Claude Desktop配置中设置环境变量。

对比内容由 README + GitHub 公开数据自动生成,定期更新。