Meting-Agent vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
Meting-Agent by ELDment | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 76 |
| Official | — | ✓ |
| Categories | MediaAI / LLM ToolsOther | Web ScrapingAI / 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.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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.
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}