nerve vs everything
Side-by-side comparison to help you pick between these two MCP servers.
nerve by evilsocket | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,320 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 9 mo ago | this month |
nerve · Summary
Nerve is an Agent Development Kit with native MCP support, allowing agents to be defined in YAML and act as both MCP client and server.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
nerve · Use cases
- Building multi-step automation workflows with shared context between agents
- Creating MCP servers in YAML configuration for standardized tool exposure
- Benchmarking and evaluating LLM agents with reproducible test cases
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
nerve · Install
Install the Nerve ADK with pip:
pip install nerve-adkTo use as an MCP client, configure your client with:
{
"mcpServers": {
"nerve": {
"command": "python",
"args": ["-m", "nerve.mcp"],
"env": {}
}
}
}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