kntn-dev-mcp
Version:
MCP server providing comprehensive kintone development support including API specs, field types, and development tips
31 lines (30 loc) • 802 B
TypeScript
export declare const SearchFieldTypes: {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
fieldType: {
type: string;
};
category: {
type: string;
};
includeProperties: {
type: string;
default: boolean;
};
includeConstraints: {
type: string;
default: boolean;
};
includeExamples: {
type: string;
default: boolean;
};
};
additionalProperties: boolean;
};
run(_args: Record<string, unknown>): Promise<unknown[]>;
};
export type SearchFieldTypesTool = typeof SearchFieldTypes;