proxy_update_target
Modify domain configurations in the Web Proxy MCP Server to enable/disable targets, capture headers, or capture body data for monitoring and analysis.
Instructions
Update target domain configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
captureBody | No | Enable/disable body capture | |
captureHeaders | No | Enable/disable header capture | |
description | No | New description | |
domain | Yes | Domain to update | |
enabled | No | Enable/disable target |
Input Schema (JSON Schema)
{
"properties": {
"captureBody": {
"description": "Enable/disable body capture",
"type": "boolean"
},
"captureHeaders": {
"description": "Enable/disable header capture",
"type": "boolean"
},
"description": {
"description": "New description",
"type": "string"
},
"domain": {
"description": "Domain to update",
"type": "string"
},
"enabled": {
"description": "Enable/disable target",
"type": "boolean"
}
},
"required": [
"domain"
],
"type": "object"
}