mcp__gemini__chat_plus
Enable AI-driven collaboration with automatic model switching and context optimization for advanced, multi-model conversational workflows.
Instructions
Advanced collaborative AI chat with automatic model switching and context optimization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Additional context | |
conversation_id | No | Conversation ID for context tracking | |
enable_multi_model | No | Enable multi-model collaboration | |
message | Yes | Message for AI conversation | |
model_preference | No | Preferred model type | auto |
Input Schema (JSON Schema)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"context": {
"description": "Additional context",
"type": "string"
},
"conversation_id": {
"description": "Conversation ID for context tracking",
"type": "string"
},
"enable_multi_model": {
"default": false,
"description": "Enable multi-model collaboration",
"type": "boolean"
},
"message": {
"description": "Message for AI conversation",
"type": "string"
},
"model_preference": {
"default": "auto",
"description": "Preferred model type",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}