resolve_vanity_url

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

Vanity URL → SteamID64.

Parameters

NameTypeRequiredDescription
vanityurlstringyes

Example call

Arguments

{
  "vanityurl": "gabelogannewell"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('resolve_vanity_url', {
  "vanityurl": "gabelogannewell"
});

Response shape

FieldTypeDescription
responseobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "response": {
      "type": "object",
      "properties": {
        "steamid": {
          "type": "string",
          "description": "The resolved SteamID64"
        },
        "success": {
          "type": "number",
          "description": "Success indicator (1 = found, 42 = not found)"
        }
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026