mcp-llm

ask_question

Ask a question to the LLM

Input Schema

NameRequiredDescriptionDefault
contextNoAdditional context for the question
questionYesQuestion to ask

Input Schema (JSON Schema)

{ "properties": { "context": { "description": "Additional context for the question", "type": "string" }, "question": { "description": "Question to ask", "type": "string" } }, "required": [ "question" ], "type": "object" }