mcp__gemini__ai_chat
Engage in AI-driven conversations with customizable model selection to enhance communication and context understanding. Ideal for integrating intelligent dialogue into workflows.
Instructions
AI conversation with model selection
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| context | No | Additional context | |
| message | Yes | Message for AI | |
| model | No | Model type | main | 
Input Schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "context": {
      "description": "Additional context",
      "type": "string"
    },
    "message": {
      "description": "Message for AI",
      "type": "string"
    },
    "model": {
      "default": "main",
      "description": "Model type",
      "type": "string"
    }
  },
  "required": [
    "message"
  ],
  "type": "object"
}