kntn-dev-mcp
Version:
MCP server providing comprehensive kintone development support including API specs, field types, and development tips
31 lines (30 loc) • 787 B
TypeScript
export declare const SearchDevelopmentTips: {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
query: {
type: string;
};
category: {
type: string;
};
difficulty: {
type: string;
};
includeCode: {
type: string;
default: boolean;
};
maxResults: {
type: string;
default: number;
};
};
required: string[];
additionalProperties: boolean;
};
run(_args: Record<string, unknown>): Promise<unknown[]>;
};
export type SearchDevelopmentTipsTool = typeof SearchDevelopmentTips;