memory vs mcp-server-pipecd
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | mcp-server-pipecd by Warashi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 4 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | Developer ToolsOps & InfraProductivity |
| Language | TypeScript | Go |
| Last commit | this month | 2 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-server-pipecd · Summary
MCP server for PipeCD, a continuous deployment platform, providing application management 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
mcp-server-pipecd · Use cases
- Managing PipeCD deployments through Claude Desktop
- Automating application lifecycle with MCP tools
- Integrating PipeCD with AI assistants for deployment management
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-server-pipecd · Install
Installation
- Install with Go:
go install github.com/Warashi/mcp-server-pipecd@latest- Configure Claude Desktop:
Add the following to your Claude Desktop configuration JSON:
{
"mcpServers": {
"pipecd": {
"command": "/Users/youruser/go/bin/mcp-server-pipecd",
"args": [],
"env": {
"PIPECD_HOST": "your.pipecd.domain:443",
"PIPECD_API_KEY_FILE": "/path/to/your/api_key",
"PIPECD_INSECURE": "false"
}
}
}
}