ask_assistant
Query an assistant on Folderr's MCP server by providing an assistant ID and a question to receive relevant responses for API interactions.
Instructions
Ask a question to a specific assistant
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| assistant_id | Yes | ID of the assistant to ask | |
| question | Yes | Question to ask the assistant | 
Input Schema (JSON Schema)
{
  "properties": {
    "assistant_id": {
      "description": "ID of the assistant to ask",
      "type": "string"
    },
    "question": {
      "description": "Question to ask the assistant",
      "type": "string"
    }
  },
  "required": [
    "assistant_id",
    "question"
  ],
  "type": "object"
}