OCTALUME vs everything
Side-by-side comparison to help you pick between these two MCP servers.
OCTALUME by Harery | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsSecurity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
OCTALUME · Summary
AI-native SDLC framework with 8-phase gates, compliance scanners, and MCP integration for regulated industries.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
OCTALUME · Use cases
- Healthcare and HealthTech development with HIPAA compliance automation
- FinTech/Banking applications with PCI DSS and SOX compliance tracking
- Government and defense projects with FedRAMP/NIST 800-53 requirements
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
OCTALUME · Install
# Install from PyPI
pip install octalume
# Initialize a project
octalume init my-app --compliance hipaa soc2
# Run a specific phase
octalume start 1Configure Claude Code to use OCTALUME's MCP server:
{
"mcpServers": {
"octalume": {
"command": "python",
"args": ["-m", "octalume.mcp.server"]
}
}
}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