mcp-graph-workflow vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-graph-workflow by DiegoNogueiraDev | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 41 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-graph-workflow · Summary
MCP server that transforms PRD documents into persistent task graphs for agentic workflows.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-graph-workflow · Use cases
- AI development teams using PRDs to maintain structured workflow traces
- Agentic systems that need persistent memory across sessions
- TDD-driven development with automated task progression
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
mcp-graph-workflow · Install
npm install -g @mcp-graph-workflow/mcp-graphAdd to your project's .mcp.json (Claude Code, Cursor, Copilot):
{
"mcpServers": {
"mcp-graph": {
"command": "npx",
"args": ["-y", "@mcp-graph-workflow/mcp-graph"]
}
}
}Initialize in your project:
mcp-graph initeverything · 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