home-memory vs everything
Side-by-side comparison to help you pick between these two MCP servers.
home-memory by impactjo | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 75 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | ProductivityAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | this month | this month |
home-memory · Summary
Home Memory is an MCP server that provides structured, persistent knowledge about your home through natural language interactions.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
home-memory · Use cases
- Document home appliances and devices through natural language descriptions
- Track home maintenance and inspection schedules for vehicles and equipment
- Plan renovations by documenting existing elements and planned changes
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
home-memory · Install
Installation
Windows (Recommended)
- Download the latest release ZIP from [GitHub Releases](../../releases)
- Extract to a folder, e.g.
C:\HomeMemory\ - Connect to your AI client:
**Claude Desktop:**
{
"mcpServers": {
"home-memory": {
"command": "C:\\HomeMemory\\HomeMemoryMCP.exe"
}
}
}**Codex App:**
- Click File > Settings > MCP servers
- Click + Add server
- Name:
home-memory - Command:
C:\HomeMemory\HomeMemoryMCP.exe
Build from Source
Requires .NET 10 SDK and Firebird 3.0:
git clone https://github.com/impactjo/home-memory.git
cd home-memory
dotnet publish HomeMemoryMCP -c Releaseeverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything