filesystem vs jiraxmcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | jiraxmcp by vaibhavpandeyvpz | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsProductivityCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
jiraxmcp · Summary
Jira MCP server providing issue management, agile tools, and webhook notifications through the Model Context Protocol.
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
jiraxmcp · Use cases
- Integrating Jira with AI assistants for automated issue tracking and management
- Connecting Jira workflows to AI-powered development environments
- Enabling real-time notifications of Jira events in AI chat interfaces
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.
jiraxmcp · Install
Installation
Quick Start
- Export your Jira credentials:
export JIRA_HOST="https://your-domain.atlassian.net"
export JIRA_EMAIL="you@example.com"
export JIRA_API_TOKEN="your-api-token"Or with an access token:
export JIRA_HOST="https://your-domain.atlassian.net"
export JIRA_ACCESS_TOKEN="your-access-token"- Start the MCP server:
npx jiraxmcp mcp- If you want inbound Jira webhook events, enable channels:
npx jiraxmcp mcp --channelsClaude Desktop Configuration
Add to your Claude Desktop config.json:
"mcpServers": {
"jira": {
"command": "npx",
"args": ["jiraxmcp", "mcp"]
}
}For webhook support, also set environment variables in Claude Desktop config.