MCP-BOE vs memory
Side-by-side comparison to help you pick between these two MCP servers.
MCP-BOE by ComputingVictor | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 39 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsgovernmentKnowledge Graph | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
MCP-BOE · Summary
MCP server providing access to Spanish BOE legislation, daily summaries, and official documents via MCP and REST API.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
MCP-BOE · Use cases
- Legal research and analysis by querying consolidated Spanish legislation
- Tracking daily government publications and changes in regulations
- Comparing and analyzing relationships between different legal norms
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-BOE · Install
Installation
**Option 1: Using uvx (Recommended)**
uvx --from git+https://github.com/ComputingVictor/MCP-BOE.git mcp-boe**Option 2: From source with uv**
git clone https://github.com/ComputingVictor/MCP-BOE.git
cd MCP-BOE
uv run python -m mcp_boe.server**Option 3: With pip**
git clone https://github.com/ComputingVictor/MCP-BOE.git
cd MCP-BOE
pip install -e .Configuration with Claude Desktop
Add to your configuration:
{
"mcpServers": {
"mcp-boe": {
"command": "uvx",
"args": ["--from", "git+https://github.com/ComputingVictor/MCP-BOE.git", "mcp-boe"]
}
}
}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"]
}
}
}