everything vs speclock
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | speclock by sgroy10 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsSecurityDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
speclock · Summary
SpecLock is an AI constraint engine with 51 MCP tools that enforces project rules across AI coding sessions.
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
speclock · Use cases
- Enforcing security constraints to prevent unauthorized access to payment systems
- Maintaining database consistency across multiple AI coding sessions
- Preventing AI assistants from modifying critical business logic
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-everythingspeclock · Install
Installation
npx speclock protect # Install in your project
speclock mcp install claude-code # Wire up MCP for Claude Code
speclock doctor # Verify everything is set up correctlyFor Claude Desktop, add to your config.json:
{
"mcpServers": {
"speclock": {
"command": "npx",
"args": ["-y", "speclock", "serve", "--project", "."]
}
}
}