everything vs mcp-server-pipecd
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server-pipecd by Warashi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 4 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsOps & InfraProductivity |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-pipecd · Summary
MCP server for PipeCD, a continuous deployment platform, providing application management through the Model Context Protocol.
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-server-pipecd · Use cases
- Managing PipeCD deployments through Claude Desktop
- Automating application lifecycle with MCP tools
- Integrating PipeCD with AI assistants for deployment management
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-server-pipecd · Install
Installation
- Install with Go:
go install github.com/Warashi/mcp-server-pipecd@latest- Configure Claude Desktop:
Add the following to your Claude Desktop configuration JSON:
{
"mcpServers": {
"pipecd": {
"command": "/Users/youruser/go/bin/mcp-server-pipecd",
"args": [],
"env": {
"PIPECD_HOST": "your.pipecd.domain:443",
"PIPECD_API_KEY_FILE": "/path/to/your/api_key",
"PIPECD_INSECURE": "false"
}
}
}
}