ssl_create_ca
Generate a new Certificate Authority for SSL bumping within the Web Proxy MCP Server, enabling secure traffic monitoring and analysis with customizable CA parameters.
Instructions
Create a new Certificate Authority for SSL bumping
Input Schema
Name | Required | Description | Default |
---|---|---|---|
caName | No | Name for the new CA (default: 'default') | default |
description | No | Description for the CA | |
overwrite | No | Overwrite existing CA if it exists | |
subject | No | Certificate subject information |
Input Schema (JSON Schema)
{
"properties": {
"caName": {
"default": "default",
"description": "Name for the new CA (default: 'default')",
"type": "string"
},
"description": {
"description": "Description for the CA",
"type": "string"
},
"overwrite": {
"default": false,
"description": "Overwrite existing CA if it exists",
"type": "boolean"
},
"subject": {
"description": "Certificate subject information",
"properties": {
"C": {
"default": "US",
"description": "Country",
"type": "string"
},
"CN": {
"description": "Common Name",
"type": "string"
},
"L": {
"default": "San Francisco",
"description": "Locality",
"type": "string"
},
"O": {
"default": "Web Proxy MCP Server",
"description": "Organization",
"type": "string"
},
"OU": {
"default": "Development",
"description": "Organizational Unit",
"type": "string"
},
"ST": {
"default": "CA",
"description": "State",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}