Skip to main content
Glama
jotraynor

Soulseek MCP Server

by jotraynor

Soulseek MCP Server

An MCP (Model Context Protocol) server that enables Claude to search and download music files from the Soulseek peer-to-peer network.

Prerequisites

  • Node.js 18+

  • A Soulseek account (create one at slsknet.org)

Installation

  1. Clone the repository:

    git clone <repository-url>
    cd SoulseekMCP
  2. Install dependencies:

    npm install
  3. Build the project:

    npm run build

Configuration

Set the following environment variables:

Variable

Required

Description

SOULSEEK_USERNAME

Yes

Your Soulseek account username

SOULSEEK_PASSWORD

Yes

Your Soulseek account password

DOWNLOAD_PATH

No

Directory for downloaded files (default: ./downloads)

Usage with Claude Desktop

Add the server to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "soulseek": {
      "command": "node",
      "args": ["path/to/SoulseekMCP/dist/index.js"],
      "env": {
        "SOULSEEK_USERNAME": "your-username",
        "SOULSEEK_PASSWORD": "your-password",
        "DOWNLOAD_PATH": "/path/to/downloads"
      }
    }
  }
}

Available Tools

Search for files on the Soulseek network.

Parameters:

  • query (string, required): Search query (artist, song title, album, etc.)

  • limit (number, optional): Maximum results to return (default: 50)

download

Download a file from a Soulseek peer.

Parameters:

  • username (string, required): Username of the peer (from search results)

  • filename (string, required): Full file path (from search results)

get_status

Check the connection status to the Soulseek network.

Development

Watch mode for development:

npm run dev

License

MIT

Available Tools

3 tools
downloadB

Download a file from a Soulseek peer. Use the username and filename from search results.

ParametersJSON Schema
NameRequiredDescriptionDefault
usernameYesUsername of the peer to download from
filenameYesFull file path from search results

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the action ('Download') but doesn't describe what happens during the download process, whether it requires specific permissions, if there are rate limits, how failures are handled, or what the expected outcome is. The description provides minimal behavioral context beyond the basic action.

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

Conciseness5/5

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

The description is extremely concise with only two sentences that directly address the tool's purpose and parameter usage. Every word earns its place, and the information is front-loaded with the core purpose stated first. There is zero wasted text or redundancy.

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

Completeness2/5

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

For a download operation with no annotations and no output schema, the description is incomplete. It doesn't explain what the tool returns (success/failure indicators, download progress, file location), doesn't mention potential errors or constraints, and provides minimal behavioral context. Given the complexity of a file download operation, more completeness is needed.

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

Parameters3/5

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

The input schema has 100% description coverage, with both parameters clearly documented in the schema itself. The description adds marginal value by specifying that parameters should come 'from search results,' which provides context about parameter sourcing but doesn't add significant semantic meaning beyond what the schema already provides. This meets the baseline for high schema coverage.

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

Purpose4/5

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

The description clearly states the action ('Download a file') and the resource ('from a Soulseek peer'), providing specific verb+resource pairing. It distinguishes from sibling tools like 'get_status' and 'search' by focusing on file retrieval rather than status checking or searching. However, it doesn't explicitly differentiate from potential alternative download methods or tools.

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

Usage Guidelines3/5

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

The description provides some implied usage guidance by mentioning 'Use the username and filename from search results,' which suggests this tool should be used after search operations. However, it doesn't explicitly state when to use this tool versus alternatives, nor does it provide clear exclusions or prerequisites beyond the parameter sourcing.

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

get_statusA

Check the current connection status to the Soulseek network.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It states what the tool does but doesn't describe what information is returned, format of the status response, whether this operation has side effects, or any authentication/rate limit considerations. For a status-checking tool with zero annotation coverage, this leaves significant behavioral gaps.

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

Conciseness5/5

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

The description is a single, efficient sentence that communicates the essential purpose without any wasted words. It's appropriately sized for a simple, parameterless tool and front-loads the key information immediately.

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

Completeness2/5

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

For a status-checking tool with no annotations and no output schema, the description is insufficiently complete. It doesn't describe what information is returned (connection state, latency, error details, etc.), making it difficult for an agent to understand what to expect from this operation. The description should compensate for the lack of structured output information.

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

Parameters4/5

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

The tool has zero parameters, and schema description coverage is 100% (though trivial since there are no parameters). The description appropriately doesn't discuss parameters since none exist, which is correct for this tool configuration. Baseline for zero parameters is 4.

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 the specific action ('Check') and target resource ('current connection status to the Soulseek network'), making the tool's purpose immediately understandable. It distinguishes itself from sibling tools 'download' and 'search' by focusing on network connectivity rather than file operations or content discovery.

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

Usage Guidelines3/5

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

The description implies usage context (verifying network connectivity) but doesn't explicitly state when to use this tool versus alternatives or any prerequisites. While the purpose suggests it's for diagnostic/status checking, there's no guidance about when this check is needed versus attempting operations directly.

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

TDQS

B3.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: download handles file retrieval, get_status checks network connectivity, and search finds files. The descriptions clearly differentiate their functions, making misselection unlikely.

Naming Consistency5/5

All three tools follow a consistent verb_noun pattern (download, get_status, search), with clear and descriptive names that align well with their functions. There are no deviations in naming style.

Tool Count3/5

With only 3 tools, the server feels thin for a file-sharing network like Soulseek. While it covers basic operations (search, download, status), it lacks tools for managing downloads, user interactions, or advanced search features that might be expected in this domain.

Completeness3/5

The tools cover core workflows (search and download) but have notable gaps. There is no way to manage downloads (e.g., pause, cancel, list active), interact with users (e.g., messaging, browsing shares), or handle errors, which could lead to agent failures in more complex scenarios.

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

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/jotraynor/SoulseekMCP'

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