action meilisearch_create_akey { label: "Create a key" description: "Create a key" provider: meilisearch method: POST path: "/keys" encoding: json input: { type: "object" properties: { actions: { type: "array" items: { type: "string" } } description: { type: "string" } expiresAt: { type: "object" } indexes: { type: "array" items: { type: "string" } } name: { type: "string" } } } output: { type: "object" additionalProperties: true } }