everything vs woocommerce-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | woocommerce-mcp-server by techspawn | |
|---|---|---|
| Stars | ★ 85,748 | ★ 89 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | E-commerceDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 6 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
woocommerce-mcp-server · Summary
A comprehensive MCP server for WooCommerce integration with WordPress REST API, covering products, orders, customers, and store management.
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
woocommerce-mcp-server · Use cases
- Automate WooCommerce store management through AI assistants
- Create shopping experiences in AI applications connected to WooCommerce
- Sync product information and orders between WooCommerce and other systems
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-everythingwoocommerce-mcp-server · Install
Installation
- Clone the repository
- Install dependencies:
npm install- Build the project:
npm run buildConfiguration
Add the server to your MCP settings file with environment variables:
{
"mcpServers": {
"woocommerce": {
"command": "node",
"args": ["path/to/build/index.js"],
"env": {
"WORDPRESS_SITE_URL": "https://your-wordpress-site.com",
"WOOCOMMERCE_CONSUMER_KEY": "your-woocommerce-consumer-key",
"WOOCOMMERCE_CONSUMER_SECRET": "your-woocommerce-consumer-secret",
"WORDPRESS_USERNAME": "your-wordpress-username",
"WORDPRESS_PASSWORD": "your-wordpress-password"
}
}
}
}