plane-mcp-server vs memory
Side-by-side comparison to help you pick between these two MCP servers.
plane-mcp-server by makeplane | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 225 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
plane-mcp-server · Summary
Plane's official MCP server provides comprehensive tools for project management, work items, cycles, modules, and more through multiple transport protocols.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
plane-mcp-server · Use cases
- Automating project creation and management workflows
- Synchronizing work items between Plane and other tools
- Generating reports from project data through AI assistants
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
plane-mcp-server · Install
Installation
The Plane MCP server supports multiple transport methods:
**1. Stdio Transport (recommended)**
uvx plane-mcp-server stdio**2. Remote HTTP Transport (OAuth)**
npx mcp-remote@latest https://mcp.plane.so/http/mcp**Claude Desktop Configuration**
{
"mcpServers": {
"plane": {
"command": "uvx",
"args": ["plane-mcp-server", "stdio"],
"env": {
"PLANE_API_KEY": "<your-api-key>",
"PLANE_WORKSPACE_SLUG": "<your-workspace-slug>",
"PLANE_BASE_URL": "https://api.plane.so"
}
}
}
}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"]
}
}
}