everything vs jiraxmcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | jiraxmcp by vaibhavpandeyvpz | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsProductivityCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
jiraxmcp · Summary
Jira MCP server providing issue management, agile tools, and webhook notifications through the Model Context Protocol.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingjiraxmcp · 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.