keyshade-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
keyshade-mcp by keyshade-xyz | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 8 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsSecurityProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 5 mo ago | this month |
keyshade-mcp · Summary
Keyshade MCP server provides secure API access to manage secrets and keys within development environments.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
keyshade-mcp · Use cases
- Securely retrieving API keys and secrets during development
- Automating credential management in CI/CD pipelines
- Accessing sensitive environment variables without hardcoding
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
keyshade-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/keyshade-xyz/keyshade-mcp.git
cd keyshade-mcp- Install dependencies:
pnpm install- Build the project:
pnpm buildConfiguration for Claude Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"keyshade": {
"command": "node",
"args": [
"YOUR_ABSOLUTE_PATH_TO/build/index.js"
],
"env": {
"KEYSHADE_API_KEY": "YOUR_KEYSHADE_API_KEY"
}
}
}
}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