memory vs jiraxmcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | jiraxmcp by vaibhavpandeyvpz | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | Developer ToolsProductivityCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
jiraxmcp · Summary
Jira MCP server providing issue management, agile tools, and webhook notifications through the Model Context Protocol.
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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
memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}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.