memory vs mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | mcp-server by plainly-videos | |
|---|---|---|
| Stars | ★ 85,748 | ★ 6 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | MediaDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mcp-server · Summary
Official MCP server for Plainly Videos API enabling After Effects automation through LLM clients.
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-server · Use cases
- Automate video creation using LLM prompts for Adobe After Effects projects
- Integrate video generation capabilities into AI applications via MCP
- Streamline video production workflows through AI-driven automation
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"]
}
}
}mcp-server · Install
Installation
Via npm
- Get your Plainly API key from [Settings page](https://app.plainlyvideos.com/dashboard/user/settings/general)
- Add config to your editor:
{
"servers": {
"plainly": {
"command": "npx",
"args": ["-y", "@plainly-videos/mcp-server@latest"],
"env": {
"PLAINLY_API_KEY": "<PLAINLY_API_KEY>"
}
}
}
}Via Smithery
npx -y @smithery/cli@latest install @plainly-videos/mcp-server --client claude --key <YOUR_SMITHERY_KEY>