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 | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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
- Install via npm for your project:
npx @agiflowai/aicode-toolkit init- 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