octave-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
octave-mcp by elevanaltd | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 51 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
octave-mcp · Summary
OCTAVE MCP server provides structured document infrastructure with canonicalization, schema validation, and mythological compression for AI artifacts.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
octave-mcp · Use cases
- Multi-agent systems requiring consistent document passing
- Decision logs and coordination briefs in organizations
- System prompts and reference documentation where token cost matters
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
octave-mcp · Install
Install via pip:
pip install octave-mcpFor Claude Desktop, add to config.json:
{
"mcpServers": {
"octave": {
"command": "octave-mcp-server"
}
}
}For HTTP transport:
octave-mcp-server --transport http --port 8080everything · 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