Skip to main content
Glama

Gequbao MCP Connector

MCP server for searching music and getting play URLs from www.gequbao.net.

Install uv first

Windows (PowerShell): powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1| iex"

macOS / Linux: bash curl -LsSf https://astral.sh/uv/install.sh| sh

Related MCP server: qq-music-mcp

Usage (Claude / Cursor / Windsurf)

Simply add the following entry to your MCP configuration file. Once saved, restart your client; the server will be downloaded and started automatically via uv.

{ "mcpServers": { "gequbao": { "command": "uv", "args": [ "tool", "run", "--from", "git+https://github.com/cgitato/gequbao-mcp.git", "gequbao_mcp" ] } }
}

Tools

search_with_full_title

Search songs by keyword.

Params:

  • keyword (string, required): Song name.

  • limit (int, optional): Max results, default 5.

  • enrich (bool, optional): Fetch full title, default false.

Returns: { "ok": true, "enriched": false, "songs": [ { "title": "", "artist": "", "song_id": "", "detail_url": "https://www.gequbao.net/", "full_title": "**" } ] }

get_music_url

Get direct MP3 play URL.

Params:

  • detail_url (string, required): Song detail page URL.

Returns: { "ok": true, audio:{ "title": "", "url": "https://.mp3", "time_total": "**" } }

Local Dev

bash git clone https://github.com/cgitato/gequbao-mcp.git cd gequbao-mcp uv sync uv run gequbao_mcp

Once started, the server can be connected via stdioin your local MCP client.

Disclaimer

This tool is intended for learning and technical research only. Do not use it for commercial purposes. Playback links are sourced from third‑party websites; their stability and availability depend on the upstream provider. If access is restricted or anti‑scraping measures change, parser updates may be required.

Available Tools

2 tools
get_music_urlA

✅ Agent 单曲播放地址获取工具

【使用方式】 get_music_url(detail_url: str) -> dict

【返回结构】 { "ok": true, audio:{ "title": "xxx", "url": "https://xxx.mp3", "time_total": "03:00" } }

【失败返回】 { "ok": false, "mp3_url": None, "error_code": "", "error": "" }

【Agent 使用约束】 ✅ 只能在确认目标歌曲后调用 ✅ 每次只调用一首 ❌ 禁止批量调用 ❌ 禁止在搜索阶段调用

ParametersJSON Schema
NameRequiredDescriptionDefault
detail_urlYes

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, but the description fully discloses behavior: it takes a detail_url, returns success/failure structures, and outlines constraints. It's transparent about not being a search or batch tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with sections and emojis for readability, but some emojis and formatting are unnecessary. It is clear and efficient, though slightly verbose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 1-parameter tool, the description covers purpose, usage, constraints, and return formats (both success and failure). No output schema exists, but the description provides explicit structures.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, but the description explains the sole parameter 'detail_url' as a string and shows how it's used in the return example. It adds full meaning beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The title and description clearly state the tool's purpose: retrieving a music playback URL for a single song. It distinguishes from the sibling tool 'search_with_full_title' by focusing on retrieval after identification.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage constraints: only call after confirming target song, only one song per call, no batch calls, and not during search phase. This guides appropriate use vs alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_with_full_titleA

✅ Agent 音乐搜索工具

【使用方式】 search_with_full_title( keyword: str, limit: int, enrich: bool = False ) -> dict

【参数描述】 keyword: 搜索关键词 limit: 返回结果数量限制,默认5 enrich: 是否补全完整歌名(含 Live / 现场信息),默认false

【返回结构】 { "ok": true, "enriched": false, "songs": [ { "title": "七里香", "artist": "周杰伦", "song_id": "4194", "detail_url": "https://www.gequbao.com/music/4194", "full_title": "" } ] }

【失败返回】 { "ok": false, "songs": [], "error_code": "search_failed" }

【Agent 使用约束】 ✅ 可多次调用 ✅ 结果不合适时可增大 limit ✅ 结果不合适时可开启 enrich=True ❌ 禁止在搜索阶段调用播放接口

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
enrichNo
keywordYes

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full responsibility. It details the return format (ok, enriched, songs) and error cases, and explains the 'enrich' parameter's effect. However, it does not mention any potential side effects or rate limits, which are minor omissions for a search tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections for usage, parameters, return values, and constraints. Each sentence serves a purpose, though it is slightly verbose with emojis and formatting. Still, it is efficient for its content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema, the description fully defines the return structure for both success and failure. All parameters are explained, usage constraints are given, and the tool's behavior is fully covered. No gaps remain for the agent to infer.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must fully explain parameters. It does: 'keyword' is search term, 'limit' is count with default 5, 'enrich' is boolean for full title completion with default false. This adds significant meaning beyond the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it is a music search tool and provides a specific verb ('搜索') and resource ('音乐'). It distinguishes itself from the sibling tool 'get_music_url' which is likely for retrieving URLs, making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is given: suggests increasing 'limit' or setting 'enrich=True' if results are unsatisfactory, and explicitly prohibits calling playback tools during search. This provides clear when-to-use and when-not-to-use instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv0.1.0
    • First observedget_music_url
    • First observedsearch_with_full_title

TDQS

A4.6/5.0
Disambiguation5/5

The two tools serve clearly distinct purposes: search for songs and retrieve a playback URL. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tool names follow a consistent snake_case and verb_noun pattern: search_with_full_title and get_music_url. No naming conflicts or style mixing.

Tool Count3/5

With only 2 tools, the server is minimal. While it covers a basic search-to-play workflow, the number feels slightly thin for a music service. However, it is not extreme and matches the narrow scope.

Completeness4/5

The core workflow of searching for songs and retrieving audio URLs is covered. Minor gaps exist, such as no separate tool for song metadata only, but agents can work around by using the search result data.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • -
    license
    Not graded
    quality
    Not graded
    maintenance
    Enables LLMs to search, download, and extract information from YouTube music videos, converting them to high-quality MP3 files.
    -
  • A
    license
    A
    quality
    D
    maintenance
    Integrates QQ Music API with MCP, enabling LLMs to search music, retrieve song details, lyrics, and playback URLs.
    10
    5
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Controls the official NetEase Cloud Music desktop client on Windows, enabling AI to search, play, manage queues, and adjust playback settings via a local control channel.
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cgitato/gequbao-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server