memory vs woocommerce-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | woocommerce-mcp-server by techspawn | |
|---|---|---|
| Stars | ★ 85,748 | ★ 89 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | E-commerceDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 6 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
woocommerce-mcp-server · Summary
A comprehensive MCP server for WooCommerce integration with WordPress REST API, covering products, orders, customers, and store management.
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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
memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}woocommerce-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"
}
}
}
}