get_minecraft_player_username_history
crafty.ggRetrieves a Minecraft player's complete username history from https://crafty.gg, resolving either a current or previous username. Returns the player's UUID and every recorded username in chronological order with each name-change timestamp.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_minecraft_player_username_history?
Retrieves a Minecraft player's complete username history from https://crafty.gg, resolving either a current or previous username. Returns the player's UUID and every recorded username in chronological order with each name-change timestamp. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username and get the result back without maintaining a scraper.
Response
{
"uuid": "<string>",
"current_username": "<string>",
"username_history": [
{
"id": "<string>",
"hidden": true,
"pivot_id": "<string>",
"username": "<string>",
"available": true,
"changed_at": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/3a4524ab-9e19-4aeb-98af-ade124483d86/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3a4524ab-9e19-4aeb-98af-ade124483d86",
"variables": {
"username": "Culor"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="3a4524ab-9e19-4aeb-98af-ade124483d86") — the "get_minecraft_player_username_history" function, which retrieves a Minecraft player's complete username history from https://crafty.gg, resolving either a current or previous username. Returns the player's UUID and every recorded username in chronological order with each name-change timestamp.. It takes username (str). Return the result as structured JSON.