UNPKG

kntn-dev-mcp

Version:

MCP server providing comprehensive kintone development support including API specs, field types, and development tips

21 lines 685 B
export class GetApiEndpoint { static name = "get_api_endpoint"; static description = "Get detailed information about a specific kintone API endpoint"; static inputSchema = { type: "object", properties: { endpoint: { type: "string" }, method: { type: "string" }, }, required: ["endpoint", "method"], }; static async run(args) { // Stub implementation - will be filled in during actual implementation return { endpoint: args.endpoint, method: args.method, description: "Mock API endpoint details", }; } } //# sourceMappingURL=GetApiEndpoint.js.map