mcp__gemini__team_orchestrator
Coordinate multi-developer workflows with shared AI contexts, enabling seamless team collaboration across roles like frontend, backend, and devops for Agile projects on the Gemini MCP server.
Instructions
Multi-developer collaboration with shared AI contexts and workflow coordination
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| coordination_level | No | Coordination level | high | 
| project | Yes | Project name or description | |
| team_members | No | Team member roles | |
| workflow_type | No | Workflow type | agile | 
Input Schema (JSON Schema)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "coordination_level": {
      "default": "high",
      "description": "Coordination level",
      "type": "string"
    },
    "project": {
      "description": "Project name or description",
      "type": "string"
    },
    "team_members": {
      "default": [
        "frontend",
        "backend",
        "devops"
      ],
      "description": "Team member roles",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "workflow_type": {
      "default": "agile",
      "description": "Workflow type",
      "type": "string"
    }
  },
  "required": [
    "project"
  ],
  "type": "object"
}