Skip to main content
Glama
CodeDreamer06

MonkeyType MCP Server

is_submission_enabled

Verifies whether quote submissions are active on the MonkeyType MCP Server, enabling users to confirm functionality before proceeding with typing test data submissions.

Instructions

Check if quote submission is enabled

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'is_submission_enabled' tool. It makes a GET request to the MonkeyType API endpoint '/quotes/submission-enabled' using the shared callMonkeyTypeApi helper 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 schema definition for the input parameters of the 'is_submission_enabled' tool. It extends BaseApiSchema, resulting in an empty object schema (no parameters required).
    const IsSubmissionEnabledSchema = BaseApiSchema.extend({});
  • server.js:263-267 (registration)
    Registration of the 'is_submission_enabled' tool in the ListTools response, specifying its 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