user_listens

Pack: listenbrainz · Endpoint: https://gateway.pipeworx.io/listenbrainz/mcp

A SPECIFIC NAMED ListenBrainz user’s recent listens (track scrobbles), newest first — only when the question names a username; never with a guessed or example one. Open music listening data, MusicBrainz-linked. Keyless for public profiles.

Parameters

NameTypeRequiredDescription
usernamestringyesListenBrainz username, e.g. “rob”.
countnumbernoHow many listens to return (default 25, max 100).

Example call

Arguments

{
  "username": "rob",
  "count": 25
}

curl

curl -X POST https://gateway.pipeworx.io/listenbrainz/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_listens","arguments":{"username":"rob","count":25}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('user_listens', {
  "username": "rob",
  "count": 25
});

More examples

{
  "username": "rob",
  "count": 50
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "listenbrainz": {
      "url": "https://gateway.pipeworx.io/listenbrainz/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026