get_typing_stats
Retrieve global typing statistics via the MonkeyType MCP Server to analyze typing performance, test data, and trends for informed insights and improvements.
Instructions
Get global typing statistics
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:424-429 (handler)Handler for the get_typing_stats tool, which calls the MonkeyType API /public/typingStats endpoint and returns the JSON response.case "get_typing_stats": { const result = await callMonkeyTypeApi('/public/typingStats', 'GET', apiKey); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }], }; }
- server.js:65-65 (schema)Zod schema definition for the get_typing_stats tool input (empty since no parameters required).const GetTypingStatsSchema = BaseApiSchema.extend({});
- server.js:227-231 (registration)Registration of the get_typing_stats tool in the ListTools response, including name, description, and input schema.{ name: "get_typing_stats", description: "Get global typing statistics", inputSchema: zodToJsonSchema(GetTypingStatsSchema), },