MCP Catalogs
Home

aicode-toolkit vs everything

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

aicode-toolkit
by AgiFlow
everything
by modelcontextprotocol
Stars★ 156★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

aicode-toolkit · Summary

MCP server toolkit providing project scaffolding, code guidance, and design system discovery for AI agents.

everything · Summary

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

aicode-toolkit · Use cases

  • Generate new projects and features from predefined templates
  • Apply consistent design patterns and rules to code changes
  • Discover and implement UI themes, CSS classes, and components

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

aicode-toolkit · Install

Installation

  1. Install via npm for your project:
npx @agiflowai/aicode-toolkit init
  1. Configure MCP in your AI agent settings. For Claude Code, add to .mcp.json:
{
  "mcpServers": {
    "scaffold-mcp": {
      "command": "npx",
      "args": ["-y", "@agiflowai/scaffold-mcp", "mcp-serve", "--admin-enable"]
    },
    "architect-mcp": {
      "command": "npx",
      "args": ["-y", "@agiflowai/architect-mcp", "mcp-serve", "--admin-enable"]
    },
    "style-system": {
      "command": "npx",
      "args": ["-y", "@agiflowai/style-system", "mcp-serve"]
    }
  }
}

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.