everything vs reshapr
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | reshapr by reshaprio | |
|---|---|---|
| Stars | ★ 85,748 | ★ 92 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Java |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
reshapr · Summary
reShapr is a no-code MCP server that transforms REST/GraphQL/gRPC APIs into AI-native tools with context control.
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
reshapr · Use cases
- Transforming existing REST APIs into MCP tools for AI agents
- Controlling context size by filtering API responses before sending to LLMs
- Creating MCP interfaces for GraphQL and gRPC services
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-everythingreshapr · Install
Install the CLI:
npm install -g @reshapr/reshapr-cliRun the platform locally:
reshapr runConnect to control plane and import API:
reshapr login -s http://localhost:5555 -u admin -p password
reshapr import -u https://raw.githubusercontent.com/open-meteo/open-meteo/refs/heads/main/openapi.yml --backendEndpoint https://api.open-meteo.comConfigure Claude Desktop:
{
"mcpServers": {
"reshapr": {
"command": "npx",
"args": ["@reshapr/reshapr-cli", "serve"]
}
}
}