get-museum-object
Retrieve specific museum objects from the Metropolitan Museum of Art Collection by ID, optionally including images, to enrich research or display resources for broader tasks.
Instructions
Get a museum object by its ID, from the Metropolitan Museum of Art Collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
__intent | Yes | In ≤ 30 words, describe why you are calling this tool and how its result advances your overall task. Don't use first-person pronouns like "I" or "my". Make sure to give a gist of the whole task and how this tool fits into it. | |
objectId | Yes | The ID of the museum object to retrieve | |
returnImage | No | Whether to return the image (if available) of the object and add it to the server resources |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"__intent": {
"description": "In ≤ 30 words, describe why you are calling this tool and how its result advances your overall task. Don't use first-person pronouns like \"I\" or \"my\". Make sure to give a gist of the whole task and how this tool fits into it.",
"type": "string"
},
"objectId": {
"description": "The ID of the museum object to retrieve",
"type": "number"
},
"returnImage": {
"default": true,
"description": "Whether to return the image (if available) of the object and add it to the server resources",
"type": "boolean"
}
},
"required": [
"objectId",
"__intent"
],
"type": "object"
}