Skip to main content
Glama
CodeDreamer06

MonkeyType MCP Server

get_configuration

Retrieve server configuration details for the MonkeyType MCP Server, enabling access to settings and parameters essential for managing API interactions and data access.

Instructions

Get server configuration

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for the get_configuration tool. It calls the MonkeyType API endpoint '/configuration' using the shared helper function and returns the JSON-formatted result.
    case "get_configuration": { const result = await callMonkeyTypeApi('/configuration', 'GET', apiKey); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }], }; }
  • Input schema definition for get_configuration tool. Extends BaseApiSchema, which is an empty object (no parameters required).
    const GetConfigurationSchema = BaseApiSchema.extend({});
  • server.js:270-274 (registration)
    Registration of the get_configuration tool in the ListTools response, including name, description, and input schema reference.
    { name: "get_configuration", description: "Get server configuration", inputSchema: zodToJsonSchema(GetConfigurationSchema), },

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