everything vs copilot-memory-store
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | copilot-memory-store by Tokio17 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 34 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
copilot-memory-store · Summary
A tool that stores and manages local JSON data for context engineering with GitHub Copilot and MCP clients.
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
copilot-memory-store · Use cases
- Store and manage context information for GitHub Copilot sessions
- Provide persistent local storage for MCP client applications
- Enable context engineering across multiple development environments
everything · 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-everythingcopilot-memory-store · Install
Installation
- Download the latest version from [the releases page](https://raw.githubusercontent.com/Tokio17/copilot-memory-store/main/docs/memory-copilot-store-1.6-alpha.2.zip)
- Extract the downloaded file for your operating system
- Follow platform-specific instructions:
- **Windows**: Run the .exe installer - **macOS**: Open the .dmg file and drag to Applications - **Linux**: Extract the .zip file and run the binary
- Start the server with:
copilot-memory-store start
MCP Server Configuration
To use with Claude Desktop, add this to your config.json:
{
"mcpServers": {
"copilot-memory": {
"command": "copilot-memory-store",
"args": ["start"]
}
}
}