mcp-expose-abilities vs memory
Side-by-side comparison to help you pick between these two MCP servers.
mcp-expose-abilities by bjornfix | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityWeb Scraping | Knowledge GraphAI / LLM ToolsProductivity |
| Language | PHP | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-expose-abilities · Summary
WordPress MCP server with 61+ core abilities and 12+ add-ons for content, SEO, and site management via AI agents.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mcp-expose-abilities · Use cases
- Automate content fixes across multiple WordPress posts and pages
- Update menus, media, and plugin settings through AI commands
- Perform site maintenance tasks like SEO optimization and security checks
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
mcp-expose-abilities · Install
Installation
- Install and activate the required plugins:
- Abilities API: https://github.com/WordPress/abilities-api/releases/latest - MCP Adapter: https://github.com/WordPress/mcp-adapter
- Download the latest release from [Releases](https://github.com/bjornfix/mcp-expose-abilities/releases)
- Upload via WordPress Admin → Plugins → Add New → Upload Plugin
- Activate the plugin
- (Optional) Install add-on plugins for vendor-specific features
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"wordpress": {
"command": "npx",
"args": ["@modelcontextprotocol/server-wordpress"],
"env": {
"WORDPRESS_URL": "https://your-site.com",
"WORDPRESS_USERNAME": "your-username",
"WORDPRESS_APPLICATION_PASSWORD": "your-app-password"
}
}
}
}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"]
}
}
}