everything vs mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server by UI5 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 85 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Summary
The UI5 MCP server provides specialized tools for UI5 application development and integration with AI agents.
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-server · Use cases
- Scaffolding new UI5 applications with specific templates
- Validating UI5 manifests against schema requirements
- Retrieving up-to-date UI5 API documentation within AI agents
- Converting JavaScript UI5 applications to TypeScript
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-everythingmcp-server · Install
Installation
For most MCP clients, use this configuration:
{
"mcpServers": {
"@ui5/mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@ui5/mcp-server"
]
}
}
}For VS Code (GitHub Copilot):
code --add-mcp '{"name":"@ui5/mcp-server","type": "stdio","command":"npx","args":["-y", "@ui5/mcp-server"]}'For Claude Code:
claude mcp add --transport stdio --scope user ui5-mcp-server -- npx -y @ui5/mcp-server