memory vs holaspirit-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | holaspirit-mcp-server by syucream | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | ProductivityDeveloper ToolsOther |
| Language | TypeScript | JavaScript |
| Last commit | this month | 11 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
holaspirit-mcp-server · Summary
An MCP server providing access to Holaspirit API for organizational governance data.
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
holaspirit-mcp-server · Use cases
- AI assistants helping analyze organizational governance structures in Holaspirit
- Automating reporting of roles, circles, and policies for compliance purposes
- Integration with other systems through Holaspirit data via MCP protocol
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"]
}
}
}holaspirit-mcp-server · Install
Installation
Via Smithery
npx -y @smithery/cli install holaspirit-mcp-server --client claudeManual Installation
npm install holaspirit-mcp-serverConfiguration
Create a .env file with:
HOLASPIRIT_API_TOKEN=your_api_token_here
HOLASPIRIT_ORGANIZATION_ID=your_organization_id_hereClaude Desktop Configuration
"holaspirit": {
"command": "npx",
"args": [
"-y",
"holaspirit-mcp-server"
],
"env": {
"HOLASPIRIT_API_TOKEN": "<your token>",
"HOLASPIRIT_ORGANIZATION_ID": "<your org id>"
}
}