GetApiEndpoint.tsā¢665 B
export class GetApiEndpoint {
static readonly name = "get_api_endpoint";
static readonly description =
"Get detailed information about a specific kintone API endpoint";
static readonly inputSchema = {
type: "object",
properties: {
endpoint: { type: "string" },
method: { type: "string" },
},
required: ["endpoint", "method"],
};
static async run(args: Record<string, unknown>): Promise<unknown> {
// Stub implementation - will be filled in during actual implementation
return {
endpoint: (args as { endpoint?: unknown }).endpoint,
method: (args as { method?: unknown }).method,
description: "Mock API endpoint details",
};
}
}