MCP Hub
Back to servers

Soulseek MCP Server

A Model Context Protocol server that allows users to search for music and download files from the Soulseek peer-to-peer network directly through an AI interface.

Tools
3
Updated
Dec 31, 2025

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:

VariableRequiredDescription
SOULSEEK_USERNAMEYesYour Soulseek account username
SOULSEEK_PASSWORDYesYour Soulseek account password
DOWNLOAD_PATHNoDirectory 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

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

Reviews

No reviews yet

Sign in to write a review