Skip to main content
Glama

whoop-get-user-profile

Retrieve authenticated user profile details including name and email from WHOOP fitness data.

Instructions

Get basic user profile information (name, email) for the authenticated user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Registration of the 'whoop-get-user-profile' tool including its description and input schema (empty object) in the ListToolsRequestSchema handler.
    { name: 'whoop-get-user-profile', description: 'Get basic user profile information (name, email) for the authenticated user', inputSchema: { type: 'object', properties: {}, required: [], }, },
  • MCP tool handler for 'whoop-get-user-profile': calls WhoopApiClient.getUserProfile() and returns the JSON-stringified result as text content.
    case 'whoop-get-user-profile': { const result = await this.whoopClient.getUserProfile(); return { content: [ { type: 'text', text: JSON.stringify(result, null, 2), }, ], }; }
  • Core implementation of the user profile retrieval: makes authenticated GET request to Whoop API endpoint '/user/profile/basic'.
    async getUserProfile(): Promise<WhoopUserProfile> { const response = await this.client.get('/user/profile/basic'); return response.data; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nissand/whoop-mcp-server-claude'

If you have feedback or need assistance with the MCP directory API, please join our Discord server