set_config
Update configuration settings for the MCP Gemini API Server by specifying a key-value pair to modify server behavior or preferences.
Instructions
Set configuration value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Configuration key to set | |
value | Yes | Configuration value to set |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Configuration key to set",
"type": "string"
},
"value": {
"description": "Configuration value to set",
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
}