Kintone MCP Server

search_records

kintoneアプリのレコードを検索します

Input Schema

NameRequiredDescriptionDefault
app_idYeskintoneアプリのID
fieldsNo取得するフィールド名の配列
queryNo検索クエリ

Input Schema (JSON Schema)

{ "properties": { "app_id": { "description": "kintoneアプリのID", "type": "number" }, "fields": { "description": "取得するフィールド名の配列", "items": { "type": "string" }, "type": "array" }, "query": { "description": "検索クエリ", "type": "string" } }, "required": [ "app_id" ], "type": "object" }