unichat-ts-mcp-server

unichat

Chat with an assistant. Example tool use message: Ask the unichat to review and evaluate your proposal.

Input Schema

NameRequiredDescriptionDefault
messagesYesArray of exactly two messages: first a system message defining the task, then a user message with the specific query

Input Schema (JSON Schema)

{ "properties": { "messages": { "description": "Array of exactly two messages: first a system message defining the task, then a user message with the specific query", "items": { "properties": { "content": { "description": "The content of the message. For system messages, this should define the context or task. For user messages, this should contain the specific query.", "type": "string" }, "role": { "description": "The role of the message sender. Must be either 'system' or 'user'", "enum": [ "system", "user" ], "type": "string" } }, "required": [ "role", "content" ], "type": "object" }, "maxItems": 2, "minItems": 2, "type": "array" } }, "required": [ "messages" ], "type": "object" }

Other Tools