UNPKG

kntn-dev-mcp

Version:

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

19 lines 642 B
export const SearchFieldTypes = { name: "search_field_types", description: "Search and retrieve kintone field type specifications", inputSchema: { type: "object", properties: { fieldType: { type: "string" }, category: { type: "string" }, includeProperties: { type: "boolean", default: true }, includeConstraints: { type: "boolean", default: true }, includeExamples: { type: "boolean", default: false }, }, additionalProperties: false, }, async run(_args) { return []; }, }; //# sourceMappingURL=SearchFieldTypes.js.map