kntn-dev-mcp
Version:
MCP server providing comprehensive kintone development support including API specs, field types, and development tips
18 lines (17 loc) • 513 B
TypeScript
export declare class GetApiEndpoint {
static readonly name = "get_api_endpoint";
static readonly description = "Get detailed information about a specific kintone API endpoint";
static readonly inputSchema: {
type: string;
properties: {
endpoint: {
type: string;
};
method: {
type: string;
};
};
required: string[];
};
static run(args: Record<string, unknown>): Promise<unknown>;
}