profile
Pack: mojang · Endpoint: https://gateway.pipeworx.io/mojang/mcp
Fetch a Minecraft player’s public profile by UUID via Mojang Session Server; returns current username and skin/cape texture URLs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
uuid | string | yes |
Example call
Arguments
{
"uuid": "069a79f4-44e9-405c-b647-db3f2e3f5e88"
}
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":"profile","arguments":{"uuid":"069a79f4-44e9-405c-b647-db3f2e3f5e88"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('profile', {
"uuid": "069a79f4-44e9-405c-b647-db3f2e3f5e88"
});
Response shape
Always returns: id, name, properties
| Field | Type | Description |
|---|---|---|
id | string | UUID of the player |
name | string | Username of the player |
properties | array | Player profile properties including textures |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "UUID of the player"
},
"name": {
"type": "string",
"description": "Username of the player"
},
"properties": {
"type": "array",
"description": "Player profile properties including textures",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Property name"
},
"value": {
"type": "string",
"description": "Property value"
},
"signature": {
"type": "string",
"description": "Cryptographic signature of the property"
}
}
}
}
},
"required": [
"id",
"name",
"properties"
]
}
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.