proxy_get_pac_file
Retrieve the Proxy Auto-Configuration (PAC) file content for automated browser proxy setup, specifying the proxy server host and port for integration with Web Proxy MCP Server.
Instructions
Get the current PAC (Proxy Auto-Configuration) file content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
proxyHost | No | Proxy server host | localhost |
proxyPort | No | Proxy server port |
Input Schema (JSON Schema)
{
"properties": {
"proxyHost": {
"default": "localhost",
"description": "Proxy server host",
"type": "string"
},
"proxyPort": {
"default": 8080,
"description": "Proxy server port",
"type": "number"
}
},
"type": "object"
}