Skip to main content
Glama
CodeDreamer06

MonkeyType MCP Server

is_submission_enabled

Check if quote submission is enabled for typing tests on MonkeyType to verify whether users can submit new quotes for typing practice.

Instructions

Check if quote submission is enabled

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for the is_submission_enabled tool. It makes a GET request to the MonkeyType API endpoint '/quotes/submission-enabled' using the shared apiKey and returns the JSON response.
    case "is_submission_enabled": { const result = await callMonkeyTypeApi('/quotes/submission-enabled', 'GET', apiKey); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }], }; }
  • Zod input schema for the is_submission_enabled tool, extending BaseApiSchema with no additional parameters.
    const IsSubmissionEnabledSchema = BaseApiSchema.extend({});
  • server.js:263-267 (registration)
    Registration of the is_submission_enabled tool in the ListTools response, specifying name, description, and input schema.
    { name: "is_submission_enabled", description: "Check if quote submission is enabled", inputSchema: zodToJsonSchema(IsSubmissionEnabledSchema), },

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