get_image
Pack: openverse · Endpoint: https://gateway.pipeworx.io/openverse/mcp
Fetch full metadata for a single Openverse image record by UUID (license, attribution, source, dimensions). Use after search_images for licensing details.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "e8c5b8d9-4f2a-4c1e-9b3a-2d5e7f1a3b6c"
}
curl
curl -X POST https://gateway.pipeworx.io/openverse/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_image","arguments":{"id":"e8c5b8d9-4f2a-4c1e-9b3a-2d5e7f1a3b6c"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_image', {
"id": "e8c5b8d9-4f2a-4c1e-9b3a-2d5e7f1a3b6c"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Image unique identifier |
title | string | Image title |
creator | string | Image creator name |
creator_url | string | Creator profile URL |
url | string | Image URL |
thumbnail | string | Thumbnail URL |
foreign_landing_url | string | Original source URL |
license | string | License type |
license_url | string | License details URL |
license_version | string | License version |
provider | string | Source provider |
source | string | Source identifier |
category | string | Image category |
filesize | integer | File size in bytes |
filetype | string | File format |
width | integer | Image width in pixels |
height | integer | Image height in pixels |
tags | array | Associated tags |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Image unique identifier"
},
"title": {
"type": "string",
"description": "Image title"
},
"creator": {
"type": "string",
"description": "Image creator name"
},
"creator_url": {
"type": "string",
"description": "Creator profile URL"
},
"url": {
"type": "string",
"description": "Image URL"
},
"thumbnail": {
"type": "string",
"description": "Thumbnail URL"
},
"foreign_landing_url": {
"type": "string",
"description": "Original source URL"
},
"license": {
"type": "string",
"description": "License type"
},
"license_url": {
"type": "string",
"description": "License details URL"
},
"license_version": {
"type": "string",
"description": "License version"
},
"provider": {
"type": "string",
"description": "Source provider"
},
"source": {
"type": "string",
"description": "Source identifier"
},
"category": {
"type": "string",
"description": "Image category"
},
"filesize": {
"type": "integer",
"description": "File size in bytes"
},
"filetype": {
"type": "string",
"description": "File format"
},
"width": {
"type": "integer",
"description": "Image width in pixels"
},
"height": {
"type": "integer",
"description": "Image height in pixels"
},
"tags": {
"type": "array",
"description": "Associated tags",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Tag name"
},
"accuracy": {
"type": "number",
"description": "Tag accuracy score"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"openverse": {
"url": "https://gateway.pipeworx.io/openverse/mcp"
}
}
}
See Getting Started for client-specific install steps.