netease-music-mcp
Allows controlling local music playback from NetEase Cloud Music, including searching, playing, pausing, skipping songs, and displaying lyrics via a web player.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@netease-music-mcpplay 晴天 by 周杰伦"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
netease-music-mcp
An MCP Server for controlling local music playback. It plays music via neteasecli and local mpv, and provides a local lyrics player Web UI.
免责声明 / Disclaimer
本项目不是网易云音乐官方 MCP,也不隶属于、关联于或受网易云音乐官方认可。本项目仅用于个人学习、研究和本机自动化体验。使用时请合理遵守网易云音乐及相关服务的服务条款、版权规则和账号使用规范。
This project is not an official NetEase Cloud Music MCP and is not affiliated with, associated with, or endorsed by NetEase Cloud Music. It is intended for personal learning, research, and local automation experiments. Please use it responsibly and comply with the applicable NetEase Cloud Music terms of service, copyright rules, and account usage policies.
You can let MCP clients like Claude Desktop help you:
Search and play NetEase Cloud Music songs
Pause, resume, stop, and skip tracks
Open the local web player:
http://127.0.0.1:8765/Display lyrics, playlists, liked music, and the vinyl playback page
Read the current song, genre, artist, and current lyrics context before AI responses
Stop
mpvand close the web player with one click when finished listening
Related MCP server: mcp_music_server
Environment Requirements
This project is currently primarily aimed at Windows users.
Dependency | Requirement | Note |
Windows | Windows 10/11 recommended | Currently developed and tested primarily on Windows |
Node.js | 24 or newer | The current version of |
npm | Installed with Node.js | Used to install project dependencies and the global CLI |
NetEase Cloud Music Account | Must be able to log in |
|
| Globally installed | Used to access NetEase Cloud Music account, search, playlists, and song info |
| System executable | Recommended to add to system |
Requires upstream project: wangwalk/neteasecli. The code looks for the globally installed neteasecli in %APPDATA%\npm\node_modules by default.
mpv is a prerequisite dependency; it must be installed beforehand, and you must ensure mpv --version can be run directly in PowerShell.
Both neteasecli and mpv are system/global dependencies and will not be automatically installed by npm install.
The current version of neteasecli requires Node.js 24 or newer, so it is recommended to use Node.js 24+ to run the entire project.
If you are using the Windows portable version of mpv.exe, you can also temporarily place it in the project root directory.
Installation
Clone the project:
git clone https://github.com/luuu-h/netease-music-mcp.git
cd netease-music-mcpInstall project dependencies:
npm installGlobally install the music CLI:
npm install -g neteasecliFirst, log in to the NetEase Cloud Music web version in your browser. neteasecli logs in by importing cookies from the browser and does not save your account password in the MCP.
https://music.163.com/Then import the login status in PowerShell:
neteasecli auth loginIf you have multiple Chrome/Edge browser profiles, you can specify the profile:
neteasecli auth login --profile "Profile 1"Verify login status:
neteasecli --pretty auth checkInstall mpv. Choose any method you are comfortable with:
# Chocolatey
choco install mpv -y
# Scoop
scoop install mpvIf PowerShell reports that the neteasecli command cannot be found, please ensure that the npm global command directory has been added to your PATH. On Windows, this is usually %APPDATA%\npm.
Verify Installation
Syntax check:
npm run checkSmoke test:
npm run smokesmoke will check:
Whether
mpvcan be found in the systemPATHor project root directoryWhether
neteasecliis installed globally
You can also ask the model to call it in the MCP client:
netease-music-mcp.check_environmentConfigure Claude Desktop
Claude Desktop registers local MCP Servers via claude_desktop_config.json. Once configured, Claude will be able to see tools like netease-music-mcp.
1. Confirm the absolute path of the project
Run in the project directory:
pwdAssuming the output is:
C:\Users\you\projects\netease-music-mcpThen the MCP Server file path is:
C:\Users\you\projects\netease-music-mcp\src\server.js2. Open the Claude Desktop configuration file
Open the Claude Desktop configuration file on Windows:
notepad "$env:APPDATA\Claude\claude_desktop_config.json"If it says the path cannot be found, create the directory first:
New-Item -ItemType Directory -Force "$env:APPDATA\Claude"
notepad "$env:APPDATA\Claude\claude_desktop_config.json"3. Write the MCP configuration
If the file is empty, paste the following content directly. Note: replace the path with your own project path and use double backslashes:
{
"mcpServers": {
"netease-music-mcp": {
"command": "node",
"args": [
"C:\\path\\to\\netease-music-mcp\\src\\server.js"
]
}
}
}If the file already contains other MCP Servers, only add the "netease-music-mcp" entry into the existing "mcpServers" block:
{
"mcpServers": {
"existing-server": {
"command": "..."
},
"netease-music-mcp": {
"command": "node",
"args": [
"C:\\path\\to\\netease-music-mcp\\src\\server.js"
]
}
}
}4. Restart and verify
After saving the configuration, completely exit and reopen Claude Desktop.
Then send the following in Claude:
请调用 netease-music-mcp.check_environment 检查我的本机音乐环境If the response shows neteaseCliInstalled, mpvAvailable, and the login status are all normal, you can start requesting songs.
If you haven't logged in to NetEase Cloud yet, you can send:
请调用 netease-music-mcp.setup_netease_login 带我完成网易云登录5. Common configuration errors
Windows paths in JSON must use double backslashes, e.g.,
C:\\path\\to\\file.jsargsmust point tosrc\\server.js, not the project folderYou must restart Claude Desktop after modifying the configuration
If Claude cannot see the tools, first confirm that
nodecan be run directly in PowerShell:
node -vStart the Web Player Separately
If you want to preview the Web UI without using Claude:
node .\src\server.js --web-player --port 8765Then open in your browser:
http://127.0.0.1:8765/The web player includes:
Favorite playlists
Create playlists
My liked music
Song search
Playlist details page
Bottom player
Play queue
Vinyl lyrics playback page
Bilingual lyrics display when supported by CLI
MCP Tool List
Tool Name | Function |
| Check |
| Guide the user to install/log in to |
| Search for NetEase Cloud songs |
| Search by keyword and play the best match |
| Play by NetEase Cloud song ID |
| Search and switch to another song |
| Pause playback |
| Resume playback |
| Stop playback and clear current listening state |
| End the current listening session: stop playback, stop |
| Get player status and cached song information |
| Get current song, genre, artist, and lyrics context |
| Start the local web player and return the localhost URL |
Recommended Claude Instructions
It is recommended to add the following section to Claude's project instructions or custom instructions:
你可以使用 netease-music-mcp MCP 控制本机音乐。
当用户要配置、登录、安装、修复或检查 neteasecli 时,调用 netease-music-mcp.setup_netease_login,并按工具返回的 steps 带用户完成登录。用户执行完命令后,再调用一次 netease-music-mcp.setup_netease_login 或 netease-music-mcp.check_environment 验证。
当用户第一次要求播放音乐、点歌、听歌、打开播放器、查看歌词播放器,或当前对话还没有打开过播放器界面时,你必须先调用 netease-music-mcp.open_web_player,并把返回的 localhost URL 告诉用户。
当用户要求播放音乐时,调用 netease-music-mcp.play_song 或 netease-music-mcp.play_track。
当用户要求切歌时,调用 netease-music-mcp.next_song。
当用户要求暂停、继续、停止时,调用 netease-music-mcp.pause、netease-music-mcp.resume、netease-music-mcp.stop。
音乐播放期间,每次回复用户前,都必须先调用 netease-music-mcp.get_listening_context。
把返回的 ai_context 当作当前对话上下文使用。
点歌或切歌成功后,也要使用工具返回的 ai_context。
playback.style 字段已经优先来自网易云歌曲百科,可直接作为曲风/风格使用。
如果 netease-music-mcp.open_web_player 已经返回过 URL,不要重复打开,除非用户明确要求重新打开播放器。
如果用户问播放器在哪里,直接给出上次的 URL;如果不知道 URL,再调用 netease-music-mcp.open_web_player。
当用户说“结束听歌”、“不听了”、“关闭播放器”、“停止整个程序”,或任何表示要结束音乐/听歌会话的请求时,调用 netease-music-mcp.shutdown。这个工具只结束本次听歌和 Web 播放器,不会关闭 MCP 工具进程,因此之后仍然可以继续调用 netease-music-mcp。Usage Example
In Claude Desktop, you can say:
一起听歌吧,听歌过程中每次回复我之前请先看 listening_context
打开音乐播放器
播放 布拉格广场 蔡依林
切到 编号89757 林俊杰
暂停
继续
结束听歌How Listening Context Works
Every time a song starts playing, the service caches the current song information to .listening-state.json:
Song ID
Song title
Artist
Album
Cover URL
Song duration
Genre (prioritized from NetEase Cloud song encyclopedia)
Timestamped lyrics
Translated lyrics when provided by the CLI
get_listening_context will return an ai_context similar to the following, where the lyrics are the 6 lines following the current playback time:
我们正在一起听歌,你现在跟我一起听xxx,曲风是xxx,歌手是xxx,当前的6句歌词是xxxNote: The MCP Server itself cannot 100% force Claude to call a tool before every response. The recommended instructions above will strongly constrain Claude to actively call get_listening_context. If you need a hard guarantee, you need to build a proxy layer or a custom client to automatically inject the listening context before sending it to the model.
FAQ
Claude cannot see the tools
You need to restart Claude Desktop after modifying claude_desktop_config.json.
Also, confirm that src/server.js in the configuration is the correct absolute path.
PowerShell cannot find neteasecli
First, confirm installation:
npm install -g neteasecliThen confirm that the npm global command directory is in your PATH. On Windows, it usually needs to include:
%APPDATA%\npmIf the command is temporarily unavailable, you can also run the globally installed CLI directly with Node:
node "$env:APPDATA\npm\node_modules\neteasecli\dist\index.js" auth login
node "$env:APPDATA\npm\node_modules\neteasecli\dist\index.js" --pretty auth checkHow to log in to NetEase Cloud
neteasecli does not use SMS verification code login; it imports NetEase Cloud Music cookies from the browser:
Open
https://music.163.com/in Chrome or Edge and log in to your NetEase Cloud account.Return to PowerShell and run:
neteasecli auth loginCheck login status:
neteasecli --pretty auth checkYou can also ask Claude to call it:
netease-music-mcp.setup_netease_loginIt will check which step is missing and return the command you should run next.
neteasecli cannot find login cookies
If neteasecli auth login consistently fails to find login cookies in the browser, you can manually write the neteasecli session file. This is usually more direct than dealing with browser lock files.
The session file path for the default profile is:
C:\Users\<你的用户名>\.config\neteasecli\profiles\default\session.jsonThe file content only needs MUSIC_U at a minimum:
{"MUSIC_U":"这里填你从浏览器里拿到的值"}How to get MUSIC_U:
Open
https://music.163.com/in Edge, Chrome, or another browser and log in.Press
F12to open Developer Tools.Go to
Application.Find
Cookies->https://music.163.comon the left.Find the cookie named
MUSIC_Uand copy itsValue.
Then execute in PowerShell:
New-Item -ItemType Directory -Force "$HOME\.config\neteasecli\profiles\default"
Set-Content -Encoding UTF8 "$HOME\.config\neteasecli\profiles\default\session.json" '{"MUSIC_U":"把这里替换成你的MUSIC_U"}'
neteasecli --pretty auth checkSmoke test reports mpv not found
First, confirm that it can be run directly in PowerShell:
mpv --versionIf not, please install mpv first, or add the directory containing mpv.exe to your system PATH. If you are only developing locally, you can also place the portable mpv.exe in the project root; the .gitignore in the project already ignores local mpv binaries and DLLs to avoid accidental uploads to GitHub.
Music keeps playing after closing the web page
The web page is just the player interface; the actual audio is played by the background mpv.
To stop playback only:
netease-music-mcp.stopTo end the entire listening session and close the web player:
netease-music-mcp.shutdownManually stop background mpv
If you want to manually stop the background playback process, you can run this in Windows PowerShell:
Get-Process mpv,mpv.com -ErrorAction SilentlyContinue | Stop-Process -ForceDevelopment
Enter the project directory:
cd netease-music-mcpRun checks:
npm run check
npm run smokeStart Web UI:
node .\src\server.js --web-player --port 8765Start MCP Server:
npm startAvailable Tools
13 toolscheck_environmentCheck local music environmentB
Check neteasecli, mpv, and login status.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description bears full burden. It only says 'check', but does not disclose if this involves network calls, permissions, or side effects. Behavioral traits are insufficiently described.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that front-loads the purpose. No unnecessary words; each word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given zero parameters, no output schema, and no annotations, the description is minimal. It lists what is checked but does not mention the format or meaning of the result, which could be important for an AI agent. Slightly lacking completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the schema is fully covered. The description adds meaning by naming the specific components to check (neteasecli, mpv, login status), which is valuable. Baseline is 4 for zero parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool checks neteasecli, mpv, and login status, specifying the verb and resources. However, it could be more precise about what 'check' entails (e.g., verify installation or running status). It distinguishes from sibling 'get_status' by focusing on environment components.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like get_status. The description lacks context for when this check is appropriate or what prerequisites exist.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_listening_contextGet current listening contextA
Return the context that the AI should include on the next user message while music is playing. The lyric context is the next 6 lyric lines at or after the current playback time.
| Name | Required | Description | Default |
|---|---|---|---|
| before | No | Deprecated. Kept for compatibility; lyric context now uses upcoming lines only. | |
| after | No | Number of upcoming lyric lines to include by default. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It reveals the lyric context behavior (next 6 lines at current time) but does not discuss potential errors, side effects, or required permissions, leaving some gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, using two sentences that front-load the purpose and provide necessary detail without any fluff. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description adequately explains what the tool returns and the default number of lines. It does not cover error states (e.g., when nothing is playing) but is reasonably complete for its simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%. The description adds value by noting the 'before' parameter is deprecated and kept for compatibility, and clarifies the default behavior of 'after'. This goes beyond the schema's basic description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the listening context (lyric lines) for AI inclusion while music is playing. This is a specific verb+resource combination that distinguishes it from sibling tools like check_environment or play_song.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool should be used to get context for the next user message while music is playing, but does not explicitly state when to use it versus alternatives, nor does it provide exclusions or conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_statusGet playback statusB
Get current neteasecli/mpv playback status plus cached song metadata.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must fully disclose behavior. It states it's a read operation but fails to mention side effects, prerequisites, or what 'cached' implies. Minimal transparency given no annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no filler, directly states purpose. Highly efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description explains return content (playback status and metadata). However, lacks detail on format or additional context that might be needed, making it adequate but not complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% coverage (no parameters), and the description doesn't add parameter details. Baseline 3 is appropriate since schema already covers everything.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses specific verbs ('get') and resources ('playback status plus cached song metadata'), clearly distinguishing it from sibling tools like play_song, pause, and get_listening_context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives like get_listening_context. Given the set of sibling tools, explicit usage context would help an agent decide between similar read-only tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
next_songCut to another songB
Switch to another requested song by searching and playing it. Use this for natural-language '切歌'.
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | Yes | The next song request. | |
| quality | No | exhigh | |
| style | No | Optional fallback style/genre hint. NetEase song wiki style is used first when available. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits. It mentions searching and playing but omits important details such as whether the current song is stopped, what happens to playback history, or any side effects like modifying a playlist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences and gets straight to the point without extraneous details. It is efficient but could be slightly more structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is too brief. It does not cover error handling, the effect on current playback, or how the natural-language request is parsed, leaving significant gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 67% description coverage (keyword and style have descriptions; quality does not). The description adds no additional parameter information beyond the schema, so it meets the baseline for this coverage level.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('switch to another song by searching and playing') and identifies the use case ('natural-language '切歌''). However, it does not explicitly differentiate from sibling tools like 'play_song' or 'search_song', which could cause ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (natural-language skip requests) but gives no guidance on when not to use it, nor does it mention alternatives like 'play_song' for exact song selection or 'search_song' for browsing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
open_web_playerOpen local web playerB
Generate and serve a local web player UI for search/play/pause/stop and lyric context. Returns a localhost URL.
| Name | Required | Description | Default |
|---|---|---|---|
| port | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It mentions generating and serving a web player UI and returning a URL, but does not detail side effects such as server lifecycle, resource usage, whether it blocks, or how to stop it. This is insufficient for a tool that starts a local server.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently conveys the core purpose and return value. Every word serves a purpose, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite the tool's relative simplicity (one optional parameter, no output schema), the description omits important behavioral context such as prerequisites (e.g., must be logged in?), server persistence, and how to terminate the web server. The agent may not understand the tool's operational implications.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, and the description does not mention the 'port' parameter at all. The schema provides constraints and a default, but the description adds no context about the parameter's purpose (e.g., that it specifies the port for the local server). This leaves the agent uninformed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool generates and serves a local web player UI for controlling playback (search/play/pause/stop/lyrics) and returns a localhost URL. This distinguishes it from sibling tools that perform individual actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for obtaining a UI for music control, but it does not explicitly state when to use it vs. using individual playback commands or when not to use it. Context can be inferred from sibling tool names, but explicit guidance is lacking.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pausePause playbackA
Pause current neteasecli/mpv playback.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It only states that pausing occurs, but fails to disclose what happens if nothing is playing, whether the state is persistent, or any side effects. The behavioral transparency is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence with no unnecessary words. It earns its place by conveying the essential purpose efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, no output schema), the description adequately conveys the core functionality. However, it could mention that pausing only applies to the specified players and whether it can be undone. Still, for a straightforward action, it is nearly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so the description does not need to explain parameter meanings. The baseline score of 4 applies because there is no parameter information to provide.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The title and description clearly state the action (pause) and the resource (current neteasecli/mpv playback). It is a specific verb+resource pair and distinguishes itself from siblings like 'stop' or 'resume'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'stop', nor does it mention any prerequisites or context. The agent receives no hints about appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
play_songSearch and play songA
Search for a song, play the best match with neteasecli/mpv, and return song info plus listening context. The style field is filled from NetEase song wiki when available.
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | Yes | Song request, for example '编号89757 林俊杰'. | |
| quality | No | exhigh | |
| style | No | Optional fallback style/genre hint. NetEase song wiki style is used first when available. | |
| resultIndex | No | Zero-based search result index to play, accepts a number or numeric string. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description must fully disclose behavioral traits. It mentions playing and returning context, but omits side effects (e.g., replacing current playback, queue behavior), error handling, and dependency on external players. This leaves significant gaps for an action that mutates playback state.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences: the first concisely captures purpose and output, the second adds a specific detail about the style parameter. No redundancy, every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description covers key actions but lacks details on return format, error handling, prerequisites, and integration with sibling tools like 'pause', 'resume'. Some context is indirectly provided by sibling names, but the description could be more self-contained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 75%, and the description adds value by explaining the 'style' field behavior ('filled from NetEase song wiki when available'), which is not in the schema. Other parameters are adequately described in the schema, so the description provides marginal but useful improvement.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches for a song, plays the best match using neteasecli/mpv, and returns song info plus listening context. It distinguishes from sibling 'search_song' (search only) and 'play_track' (play specific track) by combining both actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for searching and playing a song in one step, but it does not explicitly state when to use this over alternatives like 'search_song' or 'play_track', nor does it mention prerequisites or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
play_trackPlay track by IDC
Play a NetEase numeric song ID with neteasecli/mpv and return song info plus the start listening context. The style field is filled from NetEase song wiki when available.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | NetEase numeric track ID. | |
| quality | No | exhigh | |
| style | No | Optional fallback style/genre hint. NetEase song wiki style is used first when available. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must fully convey behavioral traits. It mentions using mpv and returning context, but omits critical details such as whether an active login is required, side effects on current playback state, error handling, and idempotency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise (two sentences, ~30 words) and front-loads the primary purpose. Every sentence contributes necessary information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema and sibling differentiation, the description is insufficient. It fails to specify return format, error behavior, or usage boundaries, leaving the agent with gaps in understanding how to use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 2 of 3 parameters with descriptions. The description adds context for the 'style' parameter (fallback when wiki unavailable), but no additional meaning for 'id' or 'quality'. This is a modest improvement over the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (play), resource (NetEase numeric song ID), technology (neteasecli/mpv), and return values (song info plus listening context). However, it does not differentiate from the sibling tool 'play_song', which likely serves a similar purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like 'play_song', 'search_song', or when prerequisites (e.g., login via 'setup_netease_login') are needed. The agent is left to infer usage context without explicit direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resumeResume playbackA
Resume paused neteasecli/mpv playback.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description bears full burden. It only states the action without explaining behavior in edge cases (e.g., already playing, errors, prerequisites). For a 0-param tool, more context is needed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single 5-word sentence, perfectly front-loaded with no wasted words. It conveys the essential meaning efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 0 parameters and no output schema, the description is minimally adequate. However, it lacks details on behavior when already playing, error conditions, or state requirements, which would improve completeness for a simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are 0 parameters, and schema coverage is trivially 100%. Per calibration, baseline is 4, and the description adds the purpose of the tool without repeating any schema details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states it resumes paused playback, with verb 'Resume' and resource 'paused neteasecli/mpv playback'. This clearly differentiates from siblings like pause, play_song, and next_song.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied (after pausing), but no explicit guidance on when to use versus alternatives. For example, if playback is already playing, the behavior is unclear, and no contrast with play_song for starting new playback is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_songSearch NetEase songsA
Search songs using neteasecli and return normalized NetEase track IDs.
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | Yes | Song, artist, or natural-language search keywords. | |
| limit | No | Result count, accepts a number or numeric string. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only states the action and output, with no disclosure of side effects, authentication requirements, or rate limits. This is minimal behavioral information.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence that is direct and to the point. No redundant or extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with two fully-described parameters and no output schema, the description is largely sufficient. It clearly states the return type (track IDs), though it could hint at subsequent usage (e.g., with play_song). Minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with both parameters having descriptions. The description adds no extra meaning beyond what is in the schema; it does not elaborate on keyword types or limit behavior. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Search'), resource ('songs'), and specifies the backend tool ('neteasecli') and output ('normalized NetEase track IDs'). This differentiates it from sibling tools like 'play_song' or 'get_status'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when or when not to use this tool. The usage is implied by the purpose (searching for songs), but alternatives or prerequisites are not mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
setup_netease_loginGuide NetEase CLI loginA
Use this when the user needs to set up, log in, or troubleshoot neteasecli. It checks installation/login state and returns step-by-step commands Claude can guide the user through.
| Name | Required | Description | Default |
|---|---|---|---|
| profile | No | Optional Chrome/Edge browser profile name for neteasecli auth login --profile. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It states that the tool checks installation/login state and returns step-by-step commands, but it does not mention any side effects, required permissions, or potential modifications. This is insufficient for a setup tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is only two sentences (27 words), front-loaded with the purpose, and every sentence adds value. No unnecessary information is present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has one parameter and no output schema. The description explains the output type ('step-by-step commands') and the overall workflow. It is complete for the tool's complexity, though the output format could be slightly more specific.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides full documentation for the single optional parameter ('profile') with 100% coverage. The description does not add additional meaning beyond the schema, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: to set up, log in, or troubleshoot neteasecli. It distinguishes itself from sibling tools (all music playback or environment checks) by focusing specifically on NetEase CLI authentication.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use the tool ('when the user needs to set up, log in, or troubleshoot neteasecli'). It does not mention when not to use it, but sibling tools are unrelated, so no exclusions are necessary. It provides clear context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
shutdownEnd listening sessionA
Use this when the user asks to end the listening session, stop listening to music, close the player, or stop the music program. It stops mpv playback, clears listening state, and closes the current web player server, while keeping the MCP tool process alive for future calls.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but the description fully discloses behavior: stops mpv playback, clears listening state, closes web player server, while keeping MCP process alive. This covers safety and side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences: first defines usage, second describes behavior. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but the tool's action is simple (stop). Description is complete for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters, so description doesn't need to add schema info. Baseline 4 is appropriate; the tool is fully described without parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the action ('end the listening session', 'stop listening to music', 'close the player') and the resource, distinguishing it from siblings like 'stop' and 'pause'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use the tool ('when the user asks to end the listening session...'), implying when not to (e.g., for pause, use 'pause' tool). No explicit exclusion, but context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
stopStop playbackA
Stop current neteasecli/mpv playback and clear listening state.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but the description clearly states it stops playback and clears listening state, which is a behavioral effect beyond mere stopping. This is sufficient transparency for a simple tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, concise, front-loaded with verb and resource, no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no parameters, the description is complete enough. It fully explains the tool's action.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has zero parameters and 100% coverage, so baseline is 4. Description adds no parameter info, which is acceptable.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'stop', the resource 'playback', and specifies the additional effect of clearing listening state. This effectively distinguishes it from siblings like pause or shutdown.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (when stopping and clearing state is desired) but does not explicitly contrast with alternatives like pause (which likely doesn't clear state) or shutdown.
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.
13 tool updates
v0.1.0- First observed
check_environment - First observed
get_listening_context - First observed
get_status - First observed
next_song - First observed
open_web_player - First observed
pause - First observed
play_song - First observed
play_track - First observed
resume - First observed
search_song - First observed
setup_netease_login - First observed
shutdown - First observed
stop
TDQS
Each tool has a clearly distinct purpose: environment checks, playback controls, search and play via ID or query, status, context, and session management. No significant overlap.
Most tools follow a verb_noun pattern (e.g., play_song, search_song), but a few like 'next_song' (adjective_noun) and 'shutdown' (single verb) deviate slightly.
13 tools cover the essential functionality of a music player (search, play, control, status, login) without being excessive.
Core playback and search are complete, but missing volume control and playlist management represent minor gaps.
Maintenance
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
MCP server for China Railway 12306 ticket availability: schedules and seats by Chinese station name.
MCP server for Suno AI music generation, lyrics, and covers
MCP server for Producer/Riffusion AI music generation
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP server that enables AI assistants to search and retrieve music data (songs, lyrics, playlists, albums, artists) from Netease Cloud Music.MIT
- AlicenseNot gradedqualityAmaintenanceMCP server that enables LLMs to search, play, and manage music from multiple platforms (NetEase, QQ, Kugou) and local files, with lyrics retrieval and playback control.MIT
- AlicenseCqualityAmaintenanceMulti-source music search and playback MCP server supporting QQ Music, NetEase Cloud, and local files with playlist management.32MIT
- AlicenseAqualityBmaintenanceA read-only MCP server for NetEase Cloud Music data, enabling querying of songs, artists, albums, playlists, lyrics, and user library through tools like search and get details.152MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/luuu-h/netease-music-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server