memory vs autotask-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | autotask-mcp by wyre-technology | |
|---|---|---|
| Stars | ★ 85,748 | ★ 36 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | ProductivityDeveloper ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
autotask-mcp · Summary
MCP server providing 39 tools for Kaseya Autotask PSA integration, enabling AI to manage tickets, projects, time entries, and companies through natural language.
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
autotask-mcp · Use cases
- Service desk automation: AI can search and update tickets without leaving the chat interface
- Project management: Create and manage projects directly through AI commands
- Time tracking: Automatically log time entries for completed tasks
- Customer service: Quickly retrieve company and contact information during support conversations
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"]
}
}
}autotask-mcp · Install
Installation
Option 1: MCPB Bundle (Claude Desktop)
- Download
autotask-mcp.mcpbfrom the [latest release](https://github.com/wyre-technology/autotask-mcp/releases/latest) - Open the file (double-click or drag into Claude Desktop)
- Enter your Autotask credentials when prompted
Option 2: Claude Code (CLI)
claude mcp add autotask-mcp \
-e AUTOTASK_USERNAME=your-user@company.com \
-e AUTOTASK_SECRET=your-secret \
-e AUTOTASK_INTEGRATION_CODE=your-code \
-- npx -y github:wyre-technology/autotask-mcpOption 3: Docker
{
"mcpServers": {
"autotask": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "MCP_TRANSPORT=stdio",
"-e", "AUTOTASK_USERNAME=your-user@company.com",
"-e", "AUTOTASK_SECRET=your-secret",
"-e", "AUTOTASK_INTEGRATION_CODE=your-code",
"--entrypoint", "node",
"ghcr.io/wyre-technology/autotask-mcp:latest",
"dist/entry.js"
]
}
}
}```