everything vs mcp-identity
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-identity by mustafabagdatli-git | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-identity · Summary
MCP server middleware for per-request cryptographic user attestation with signature verification.
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
mcp-identity · Use cases
- Financial operations where transaction authorization must be provable
- Data deletion actions requiring audit trails
- Autonomous agent actions taken on behalf of users
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-everythingmcp-identity · Install
pip install mcp-identityFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"identity": {
"command": "python",
"args": ["-m", "mcp_identity.server"]
}
}
}