Integrations
Integrates with Codeium's Windsurf through MCP configuration at ~/.codeium/windsurf/mcp_config.json, enabling MonkeyType API access.
Project is hosted on GitHub with repository information provided for accessing source code and contributing.
Provides access to all MonkeyType API endpoints, allowing interaction with user data, test results, leaderboards, and server configuration. Features include retrieving personal bests, user stats, test results, leaderboard data, and checking username availability.
MonkeyType MCP Server
This is a Model Context Protocol (MCP) server that provides access to all endpoints of the MonkeyType API. The server exposes MCP tools that allow Large Language Models (LLMs) to interact with the MonkeyType API.
Features
- Exposes all MonkeyType API endpoints as MCP tools
- Compatible with any LLM that supports the Model Context Protocol
- Simple API key-based authentication per tool call
- Comprehensive error handling
- Rate limit awareness (respects MonkeyType's rate limits)
Installation
Using npx (Recommended)
The easiest way to run the server is using npx:
This will download and run the latest version of the server directly.
Global Installation
You can also install the package globally:
Manual Installation
If you prefer to clone the repository:
Available Tools
The server exposes the following MonkeyType API endpoints as MCP tools:
User Tools
check_username
- Check if a username is availableget_personal_bests
- Get user's personal bestsget_tags
- Get user's tagsget_stats
- Get user's statsget_profile
- Get user's profilesend_forgot_password_email
- Send forgot password emailget_current_test_activity
- Get current test activityget_streak
- Get user's streak
Test Results Tools
get_results
- Get up to 1000 test resultsget_result_by_id
- Get result by IDget_last_result
- Get last result
Public Tools
get_speed_histogram
- Get speed histogramget_typing_stats
- Get typing stats
Leaderboards Tools
get_leaderboard
- Get leaderboardget_leaderboard_rank
- Get leaderboard rankget_daily_leaderboard
- Get daily leaderboardget_weekly_xp_leaderboard
- Get weekly XP leaderboard
PSAs Tools
get_psas
- Get PSAs
Quotes Tools
is_submission_enabled
- Check if quote submission is enabled
Server Configuration Tools
get_configuration
- Get server configuration
How to Get Your MonkeyType API Key (ApeKey)
To get your own MonkeyType API key (ApeKey), follow these steps:
- Sign in to your MonkeyType account
- Click on your profile icon in the top right corner
- Select "Account" from the dropdown menu
- Navigate to the "Ape Keys" tab
- Click "Generate New" to create a new API key
- Give your key a name (e.g., "MCP Server")
- Select the appropriate scopes based on what endpoints you need to access
- Click "Generate"
- Copy the generated key
Important: Keep your API key secure and never share it publicly.
Using the MCP Server with LLMs
To use this server with an LLM, you'll need to configure the LLM to use this server for MCP tool calls. You must provide your MonkeyType API key (ApeKey) by setting the MONKEYTYPE_API_KEY
environment variable in your MCP server configuration.
Environment Variables
MONKEYTYPE_API_KEY
: (Required) Your MonkeyType API key. You can obtain this from your account settings on monkeytype.com.MONKEYTYPE_USERNAME
: (Optional) Your MonkeyType username or UID. This can be used by certain tools (likeget_profile
) as a default or when specific keywords are used.
Example Tool Call
Integration with LLM Platforms
To integrate this server with LLM platforms like OpenAI, Anthropic, or others:
- Start the MCP server using one of the installation methods above
- Configure your LLM platform to use this server as an MCP tool provider
- Pass the server's stdio as the communication channel
IDE Integration
MCP Configuration
To add MonkeyType MCP to your IDE, add this to your IDE's MCP config file:
Config file locations:
- Cursor:
~/.cursor/mcp.json
- Windsurf:
~/.codeium/windsurf/mcp_config.json
- Cline:
~/.cline/mcp_config.json
- Claude:
~/.claude/mcp_config.json
VS Code Integration
To use this MCP server in VS Code:
- Open VS Code settings
- Search for "MCP Server"
- Add a new MCP server with the following configuration:
- Name: MonkeyType MCP
- Command:
npx monkeytype-mcp
- Type: Standard Input/Output (stdio)
Available Tools
The server exposes the following MonkeyType API endpoints as MCP tools:
User Tools
check_username
- Check if a username is availableget_personal_bests
- Get user's personal bestsget_tags
- Get user's tagsget_stats
- Get user's statsget_profile
- Get user's profilesend_forgot_password_email
- Send forgot password emailget_current_test_activity
- Get current test activityget_streak
- Get user's streak
get_profile
Fetches a user's public profile.
Parameters:
uidOrName
(string, optional): The UID or username of the user whose profile is to be fetched.- If you provide a specific username or UID, that user's profile will be fetched.
- You can use keywords like "me", "self", "current", or "my". If one of these keywords is used, the tool will use the
MONKEYTYPE_USERNAME
environment variable (if set). - If this parameter is omitted entirely, the tool will also attempt to use the
MONKEYTYPE_USERNAME
environment variable (if set). - If the
uidOrName
parameter is omitted (or a keyword is used) and theMONKEYTYPE_USERNAME
environment variable is not set, an error will occur.
Test Results Tools
get_results
- Get up to 1000 test resultsget_result_by_id
- Get result by IDget_last_result
- Get last result
Public Tools
get_speed_histogram
- Get speed histogramget_typing_stats
- Get typing stats
Leaderboards Tools
get_leaderboard
- Get leaderboardget_leaderboard_rank
- Get leaderboard rankget_daily_leaderboard
- Get daily leaderboardget_weekly_xp_leaderboard
- Get weekly XP leaderboard
PSAs Tools
get_psas
- Get PSAs
Quotes Tools
is_submission_enabled
- Check if quote submission is enabled
Server Configuration Tools
get_configuration
- Get server configuration
Publishing
If you're making changes to this server and want to publish your own version:
GitHub Repository
This project is hosted on GitHub at https://github.com/CodeDreamer06/MonkeytypeMCP.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgements
- MonkeyType for providing the API
- Model Context Protocol (MCP) for the server architecture
Disclaimer
This project is not officially affiliated with MonkeyType. Use at your own risk and ensure you comply with MonkeyType's terms of service and API rate limits.
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
A Model Context Protocol server that enables LLMs to interact with all MonkeyType API endpoints, providing access to typing test data, user profiles, leaderboards, and statistics through natural language.
Related MCP Servers
- -securityAlicense-qualityA Model Context Protocol Server that enables LLMs to interact with and execute REST API calls through natural language prompts, supporting GET/PUT/POST/PATCH operations on configured APIs.Last updated -5PythonApache 2.0
- -securityAlicense-qualityA Model Context Protocol server that enables LLMs to interact with databases (currently MongoDB) through natural language, supporting operations like querying, inserting, deleting documents, and running aggregation pipelines.Last updated -TypeScriptMIT License
- -security-license-qualityA Python implementation of the Model Context Protocol that allows applications to provide standardized context for LLMs, enabling creation of servers that expose data and functionality to LLM applications through resources, tools, and prompts.Last updated -PythonMIT License
- AsecurityAlicenseAqualityA Model Context Protocol server that enables LLMs to interact with web pages, take screenshots, generate test code, scrape web pages, and execute JavaScript in a real browser environment.Last updated -29101TypeScriptMIT License