Skip to main content
Glama
CodeDreamer06

MonkeyType MCP Server

get_typing_stats

Retrieve global typing statistics from MonkeyType to analyze typing performance metrics and trends.

Instructions

Get global typing statistics

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for the get_typing_stats tool, which calls the MonkeyType API endpoint '/public/typingStats' and returns the result as JSON.
    case "get_typing_stats": {
      const result = await callMonkeyTypeApi('/public/typingStats', 'GET', apiKey);
      return {
        content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
      };
    }
  • Zod schema definition for the get_typing_stats tool input (empty object since no parameters).
    const GetTypingStatsSchema = BaseApiSchema.extend({});
  • server.js:227-231 (registration)
    Registration of the get_typing_stats tool in the list of available tools.
    {
      name: "get_typing_stats",
      description: "Get global typing statistics",
      inputSchema: zodToJsonSchema(GetTypingStatsSchema),
    },

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/CodeDreamer06/MonkeytypeMCP'

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