MCP Catalogs
Home

ai-software-architect vs everything

Side-by-side comparison to help you pick between these two MCP servers.

ai-software-architect
by codenamev
everything
by modelcontextprotocol
Stars★ 65★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

ai-software-architect · Summary

AI-powered architecture documentation framework with ADRs and MCP server integration for Claude and Cursor.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

ai-software-architect · Use cases

  • Document architectural decisions and maintain architecture records
  • Conduct structured architecture reviews with specialized reviewers
  • Automate architecture documentation and analysis with AI assistants

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

ai-software-architect · Install

npm install -g ai-software-architect

Configure in Claude Desktop's config.json:

{
  "mcpServers": {
    "ai-software-architect": {
      "command": "mcp",
      "args": []
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.