mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by cap-js | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 96 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
mcp-server · Summary
MCP server for AI-assisted development of CAP applications with model and documentation search capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Use cases
- AI assistants answering questions about CDS services, entities, and their relationships in CAP projects
- Developers receiving context-aware suggestions while modifying CDS models
- Locating documentation for specific CAP APIs without leaving the development environment
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 · Install
Installation
- Install the server globally:
npm i -g @cap-js/mcp-server- Use in your MCP client with the command
npx -y @cap-js/mcp-server
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"cds-mcp": {
"command": "npx",
"args": ["-y", "@cap-js/mcp-server"],
"env": {}
}
}
}VS Code with Cline Configuration
Add to your VS Code settings:
{
"mcpServers": {
"cds-mcp": {
"command": "npx",
"args": ["-y", "@cap-js/mcp-server"],
"env": {}
}
}
}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