MCP Catalogs
Home

mcp-server-atlassian-jira vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-atlassian-jira
by aashari
filesystem
by modelcontextprotocol
Stars★ 69★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsProductivityAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

mcp-server-atlassian-jira · Summary

TypeScript MCP server enabling AI systems to interact with Atlassian Jira via REST API for project management and issue tracking.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mcp-server-atlassian-jira · Use cases

  • Developers accessing issue details and development context directly through AI
  • Project managers tracking progress, priorities, and team assignments via natural language queries
  • QA engineers tracking bugs and testing status without switching contexts

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

mcp-server-atlassian-jira · Install

Install the MCP server globally:

npm install -g @aashari/mcp-server-atlassian-jira

For Claude Desktop users, add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["-y", "@aashari/mcp-server-atlassian-jira"],
      "env": {
        "ATLASSIAN_SITE_NAME": "your-company",
        "ATLASSIAN_USER_EMAIL": "your.email@company.com",
        "ATLASSIAN_API_TOKEN": "your_api_token"
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using 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 Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.