get-athlete-profile
Retrieve authenticated athlete profile data, including the unique ID required for accessing statistics and other Strava API tools.
Instructions
Fetches the profile information for the authenticated athlete, including their unique numeric ID needed for other tools like get-athlete-stats.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/getAthleteProfile.ts:4-53 (handler)The main handler implementation for the 'get-athlete-profile' tool. It fetches the authenticated athlete's profile from Strava API using the access token, formats the profile information, and returns it as a text response. Handles errors and configuration checks.export const getAthleteProfile = { name: "get-athlete-profile", description: "Fetches the profile information for the authenticated athlete, including their unique numeric ID needed for other tools like get-athlete-stats.", // No input schema needed for this tool inputSchema: undefined, execute: async () => { // No input parameters needed const token = process.env.STRAVA_ACCESS_TOKEN; if (!token || token === 'YOUR_STRAVA_ACCESS_TOKEN_HERE') { console.error("Missing or placeholder STRAVA_ACCESS_TOKEN in .env"); return { content: [{ type: "text" as const, text: "❌ Configuration Error: STRAVA_ACCESS_TOKEN is missing or not set in the .env file." }], isError: true, }; } try { console.error("Fetching athlete profile..."); const athlete = await getAuthenticatedAthlete(token); console.error(`Successfully fetched profile for ${athlete.firstname} ${athlete.lastname} (ID: ${athlete.id}).`); const profileParts = [ `👤 **Profile for ${athlete.firstname} ${athlete.lastname}** (ID: ${athlete.id})`, ` - Username: ${athlete.username || 'N/A'}`, ` - Location: ${[athlete.city, athlete.state, athlete.country].filter(Boolean).join(", ") || 'N/A'}`, ` - Sex: ${athlete.sex || 'N/A'}`, ` - Weight: ${athlete.weight ? `${athlete.weight} kg` : 'N/A'}`, ` - Measurement Units: ${athlete.measurement_preference}`, ` - Strava Summit Member: ${athlete.summit ? 'Yes' : 'No'}`, ` - Profile Image (Medium): ${athlete.profile_medium}`, ` - Joined Strava: ${athlete.created_at ? new Date(athlete.created_at).toLocaleDateString() : 'N/A'}`, ` - Last Updated: ${athlete.updated_at ? new Date(athlete.updated_at).toLocaleDateString() : 'N/A'}`, ]; // Ensure return object matches expected structure const response = { content: [{ type: "text" as const, text: profileParts.join("\n") }] }; return response; } catch (error) { const errorMessage = error instanceof Error ? error.message : "An unknown error occurred"; console.error("Error in get-athlete-profile tool:", errorMessage); return { content: [{ type: "text" as const, text: `❌ API Error: ${errorMessage}` }], isError: true, }; } } };
- src/server.ts:51-56 (registration)Registers the 'get-athlete-profile' tool with the MCP server using the imported tool definition's name, description, empty input schema ({}), and execute function.server.tool( getAthleteProfile.name, getAthleteProfile.description, {}, getAthleteProfile.execute );