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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:503-508 (handler)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) }], }; }
- server.js:102-102 (schema)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), },