ssl_generate_certificate
Generate a server SSL certificate for a specified domain, including alternative domain names (SAN), to enable secure HTTPS connections on the Web Proxy MCP Server.
Instructions
Generate server certificate for specific domain
Input Schema
Name | Required | Description | Default |
---|---|---|---|
altNames | No | Alternative domain names (SAN) | |
domain | Yes | Domain name for the certificate |
Input Schema (JSON Schema)
{
"properties": {
"altNames": {
"default": [],
"description": "Alternative domain names (SAN)",
"items": {
"type": "string"
},
"type": "array"
},
"domain": {
"description": "Domain name for the certificate",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
}