username_to_uuid

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

Resolve a Minecraft username to its current Mojang UUID; returns the canonical UUID string used to identify the account.

Parameters

NameTypeRequiredDescription
usernamestringyes

Example call

Arguments

{
  "username": "Notch"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('username_to_uuid', {
  "username": "Notch"
});

More examples

{
  "username": "steve"
}

Response shape

Always returns: id, name

FieldTypeDescription
idstringUUID of the player
namestringCurrent username of the player
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "UUID of the player"
    },
    "name": {
      "type": "string",
      "description": "Current username of the player"
    }
  },
  "required": [
    "id",
    "name"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026