annator / mcps /grok_com_linear /tools /extract_images.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
669 Bytes
{
"name": "extract_images",
"description": "Extract and fetch images from markdown content. Use this to view screenshots, diagrams, or other images embedded in Linear issues, comments, or documents. Pass the markdown content (e.g., issue description) and receive the images as viewable data.",
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"markdown": {
"type": "string",
"description": "Markdown content containing image references (e.g., issue description, comment body)"
}
},
"required": [
"markdown"
],
"additionalProperties": false
}
}