check_username
Verify the availability of a username on MonkeyType using the MCP server, enabling users to check if their desired username is already taken.
Instructions
Check if a username is available on MonkeyType
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Username to check for availability |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Username to check for availability",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}