action files_get_projects { label: "List Projects" description: "List Projects" provider: files method: GET path: "/projects" encoding: json input: { type: "object" properties: { cursor: { type: "string" } per_page: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Projects" properties: { global_access: { type: "string" description: "Global access settings" enum: ["none", "anyone_with_read", "anyone_with_full"] } id: { type: "integer" format: "int32" description: "Project ID" } } } } }