Meting-Agent vs memory
Side-by-side comparison to help you pick between these two MCP servers.
Meting-Agent by ELDment | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | MediaAI / LLM ToolsOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 2 mo ago | this month |
Meting-Agent · Summary
Multi-platform music API proxy for AI systems, exposing search, playback, and lyric retrieval via MCP.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
Meting-Agent · Use cases
- Enable AI assistants to play and analyze music from Chinese platforms
- Create music recommendation systems with access to multiple platforms
- Build applications that need to aggregate music data from various sources
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
Meting-Agent · Install
Installation
MCP Server
Install via npm:
npm install @eldment/meting-agentConfigure in Claude Desktop:
{
"mcpServers": {
"meting-agent": {
"command": "node",
"args": ["@eldment/meting-agent"],
"env": {}
}
}
}Skill
Download from [releases](https://github.com/ELDment/Meting-Agent/releases) and follow instructions in skills/meting-agent/README.md.
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"]
}
}
}