config_set
Update or set configuration values for projects in GitMCP by specifying a key-value pair, ensuring consistent and customizable project settings.
Instructions
Set a configuration value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Configuration key | |
value | Yes | Configuration value |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Configuration key",
"type": "string"
},
"value": {
"description": "Configuration value",
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
}