mcp-slskd
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SLSKD_HOST | No | slskd API endpoint | http://127.0.0.1:5030 |
| SLSKD_PASS | No | slskd web UI password | slskd |
| SLSKD_USER | No | slskd web UI username | slskd |
| SLSKD_API_KEY | No | API key (alternative to user/pass) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_musicA | |
| download_musicA | |
| download_statusA | |
| browse_userA | |
| search_last_resultsA | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Tools are mostly distinct: browse_user explores a user's files, search_music performs a new search, download_music starts a download, download_status checks progress, and search_last_results fetches cached results. The only potential confusion is between search_music and search_last_results, but descriptions clarify that one performs a new query and the other retrieves previous results.
All tool names follow a consistent verb_noun pattern in snake_case (browse_user, search_music, download_music, download_status, search_last_results). The pattern is predictable and readable, with no mixed conventions.
Five tools is well-scoped for a music download client, covering the essential actions (search, browse, download, status) without unnecessary redundancy. The count feels appropriate for the domain.
The core workflow is covered: search for music, browse user shares, download files, and check download status. However, missing operations like cancel or pause downloads represent a minor gap that agents may need to work around, though not critical for basic usage.