Graphlit MCP Server

Official
by graphlit
Verified

describeImage

Generate descriptive text from an image using vision LLM. Input an image URL and prompt to receive Markdown-formatted text output, without storing the image in the knowledge base.

Instructions

Prompts vision LLM and returns completion. Does not ingest image into Graphlit knowledge base. Accepts image URL as string. Returns Markdown text from LLM completion.

Input Schema

NameRequiredDescriptionDefault
promptYes
urlYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "prompt": { "type": "string" }, "url": { "type": "string" } }, "required": [ "prompt", "url" ], "type": "object" }
ID: fscrivteod