everything vs taiga-ui-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | taiga-ui-mcp by taiga-family | |
|---|---|---|
| Stars | ★ 85,748 | ★ 13 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
taiga-ui-mcp · Summary
MCP server providing Taiga UI documentation, component examples, and migration guides for Angular development.
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
taiga-ui-mcp · Use cases
- AI assistant generating Angular code using Taiga UI components
- Documentation search and code example retrieval during development
- Migration assistance when updating Taiga UI versions
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-everythingtaiga-ui-mcp · Install
Installation
Install the Taiga UI MCP server using npm:
npm install -g @taiga-ui/mcpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"taiga-ui": {
"command": "npx",
"args": [
"@taiga-ui/mcp@latest",
"--source-url=https://taiga-ui.dev/llms-full.txt"
]
}
}
}VS Code/Cursor/Windsurf Configuration
Add to your settings:
{
"mcpServers": {
"taiga-ui": {
"command": "npx",
"args": [
"@taiga-ui/mcp@latest",
"--source-url=https://taiga-ui.dev/llms-full.txt"
]
}
}
}