proxy_export_config
Export the current proxy configuration, including optional traffic logs, to a specified file for backup or analysis. Simplifies managing proxy settings within the Web Proxy MCP Server environment.
Instructions
Export current proxy configuration to file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | No | Output file path | |
includeTrafficLog | No | Include traffic log in export |
Input Schema (JSON Schema)
{
"properties": {
"filepath": {
"description": "Output file path",
"type": "string"
},
"includeTrafficLog": {
"default": false,
"description": "Include traffic log in export",
"type": "boolean"
}
},
"type": "object"
}