Meting-Agent vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Meting-Agent by ELDment | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | MediaAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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.
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-everything