blatant-why vs everything
Side-by-side comparison to help you pick between these two MCP servers.
blatant-why by 001TMF | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 66 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
blatant-why · Summary
Multi-agent biologic design platform with 11 MCP servers for protein design campaigns.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
blatant-why · Use cases
- Designing VHH nanobodies against specific targets like PD-L1
- Running multi-agent protein design campaigns for therapeutic antibodies
- Screening and ranking protein candidates based on structural quality and developability
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
blatant-why · Install
Install prerequisites: Node.js 18+, Python 3.11+, uv, and Claude Code.
# Install uv (Python package manager)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install Claude Code
npm install -g @anthropic-ai/claude-code
# Initialize your project
mkdir my-campaign && cd my-campaign
npx blatant-why init
# Add API keys
cp .env.example .env
# Edit .env to add your Tamarind API key
# Start designing
claudeClaude Desktop Configuration (if applicable):
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