UNPKG

kntn-dev-mcp

Version:

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

21 lines 623 B
export const SearchApiSpecs = { name: "search_api_specs", description: "Search kintone API specifications by endpoint, method, or keyword", inputSchema: { type: "object", properties: { query: { type: "string" }, category: { type: "string" }, method: { type: "string" }, version: { type: "string" }, includeDeprecated: { type: "boolean" }, }, required: ["query"], additionalProperties: false, }, async run(args) { void args; return []; }, }; //# sourceMappingURL=SearchApiSpecs.js.map