memory vs mcp-n8n-workflow-builder
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | mcp-n8n-workflow-builder by salacoste | |
|---|---|---|
| Stars | ★ 85,748 | ★ 226 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | ProductivityDeveloper ToolsOps & Infra |
| Language | TypeScript | JavaScript |
| 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.
mcp-n8n-workflow-builder · Summary
MCP server enabling AI-powered n8n workflow automation through natural language with 17 tools for comprehensive workflow lifecycle management.
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
mcp-n8n-workflow-builder · Use cases
- AI-powered workflow creation without JSON editing
- Multi-instance workflow management across dev/staging/prod environments
- Debugging and monitoring failed workflow executions
- Secure credential management for various services
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"]
}
}
}mcp-n8n-workflow-builder · Install
Installation
# Install globally via npm
npm install -g @kernel.salacoste/n8n-workflow-builder
# Verify installation
npx @kernel.salacoste/n8n-workflow-builder --versionClaude Desktop Integration
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"n8n-workflow-builder": {
"command": "npx",
"args": ["@kernel.salacoste/n8n-workflow-builder"]
}
}
}Restart Claude Desktop to complete the setup.