mcp-governance-sdk vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-governance-sdk by ithena-one | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 37 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | SecurityDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 14 mo ago | this month |
mcp-governance-sdk · Summary
A governance SDK adding identity, RBAC, auditing and logging capabilities to MCP servers.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-governance-sdk · Use cases
- Enterprise deployments requiring strict access controls and audit trails
- MCP servers handling sensitive data needing compliance with regulations
- Development teams wanting to add security and governance without rebuilding core MCP logic
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-governance-sdk · Install
npm install @ithena-one/mcp-governance @modelcontextprotocol/sdk zod
# or
yarn add @ithena-one/mcp-governance @modelcontextprotocol/sdk zodFor Claude Desktop integration, add to the config.json:
"mcpServers": {
"governance": {
"command": "npx",
"args": ["@ithena-one/mcp-governance"]
}
}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-everything