update_config
Modify specific sections or replace entire configurations in the Agent Knowledge MCP server. Update individual keys or manage complete configs for streamlined system adjustments.
Instructions
Update configuration with section-specific changes or full configuration replacement
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config_key | No | The key within the section to update (e.g., 'allowed_base_directory') | |
config_section | No | The top-level section of the config to update (e.g., 'security') | |
config_value | No | The new value for the specified key | |
full_config | No | Full configuration object to save. Replaces the entire config |
Input Schema (JSON Schema)
{
"properties": {
"config_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The key within the section to update (e.g., 'allowed_base_directory')",
"title": "Config Key"
},
"config_section": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The top-level section of the config to update (e.g., 'security')",
"title": "Config Section"
},
"config_value": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The new value for the specified key",
"title": "Config Value"
},
"full_config": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Full configuration object to save. Replaces the entire config",
"title": "Full Config"
}
},
"type": "object"
}