{
"type": "object",
"required": [
"clientId",
"clientSecret",
"redirectUri",
"email",
"accountType"
],
"properties": {
"email": {
"type": "string",
"description": "Email account to use for the MCP server."
},
"clientId": {
"type": "string",
"description": "OAuth2 client ID for Google API authentication."
},
"extraInfo": {
"type": "string",
"description": "Additional info about the account, to be passed to the AI."
},
"accountType": {
"type": "string",
"description": "Type of Google account, e.g., personal or work."
},
"redirectUri": {
"type": "string",
"description": "Authorized redirect URI for OAuth2, e.g., http://localhost:4100/code"
},
"clientSecret": {
"type": "string",
"description": "OAuth2 client secret for Google API authentication."
}
}
}