shopify-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
shopify-mcp by GeLi2001 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 209 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | E-commerceDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
shopify-mcp · Summary
Shopify MCP server with comprehensive tools for managing products, customers, orders and more through GraphQL API.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
shopify-mcp · Use cases
- E-commerce store owners managing products and inventory through AI assistants
- Customer support teams retrieving order information and processing returns
- Developers building automated workflows for Shopify store operations
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
shopify-mcp · Install
Installation
- Install Node.js (version 18 or higher)
- For Claude Desktop, add to your config file:
{
"mcpServers": {
"shopify": {
"command": "npx",
"args": [
"shopify-mcp",
"--clientId",
"<YOUR_CLIENT_ID>",
"--clientSecret",
"<YOUR_CLIENT_SECRET>",
"--domain",
"<YOUR_SHOP>.myshopify.com"
]
}
}
}- For Claude Code:
claude mcp add shopify -- npx shopify-mcp \
--clientId YOUR_CLIENT_ID \
--clientSecret YOUR_CLIENT_SECRET \
--domain your-store.myshopify.comeverything · 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