action vercel_artifact_query { label: "Query information about an artifact" description: "Query information about an array of artifacts." provider: vercel method: POST path: "/v8/artifacts" encoding: json input: { type: "object" properties: { hashes: { type: "array" description: "artifact hashes" items: { type: "string" } } teamId: { type: "string" } } required: ["hashes"] additionalProperties: false } output: { type: "object" } }