MCP Catalogs
Home

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
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptJava
Last committhis monththis 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-everything

reshapr · Install

Install the CLI:

npm install -g @reshapr/reshapr-cli

Run the platform locally:

reshapr run

Connect 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.com

Configure Claude Desktop:

{
  "mcpServers": {
    "reshapr": {
      "command": "npx",
      "args": ["@reshapr/reshapr-cli", "serve"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.