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
| Name | Type | Required | Description |
|---|---|---|---|
username | string | yes |
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
| Field | Type | Description |
|---|---|---|
id | string | UUID of the player |
name | string | Current 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.