get_player

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

Dota 2 player profile by account ID: name, country, rank tier, leaderboard rank, and win/loss totals. OpenDota keyless data.

Parameters

NameTypeRequiredDescription
account_idnumber,stringyesSteam32 account ID.

Example call

Arguments

{
  "account_id": 88591424
}

curl

curl -X POST https://gateway.pipeworx.io/opendota/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_player","arguments":{"account_id":88591424}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_player', {
  "account_id": 88591424
});

More examples

{
  "account_id": "103952045"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026