get-similar-images-by-description
Search for visually similar images using a text description. Specify a description, pagination limit, and offset to retrieve relevant image results in the Inspire MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | image description | |
limit | No | pagination: limit. set at least 5 | |
offset | Yes | pagination: offset |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "image description",
"type": "string"
},
"limit": {
"default": 10,
"description": "pagination: limit. set at least 5",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "pagination: offset",
"type": "number"
}
},
"required": [
"description",
"offset"
],
"type": "object"
}