Skip to main content
Glama

APISIX-MCP

by api7

update_ssl

Modify SSL certificate attributes like label, PEM format, SNI, client configuration, or validity timestamps using the APISIX-MCP server’s Admin API integration.

Instructions

Update specific attributes of an existing SSL certificate

Input Schema

NameRequiredDescriptionDefault
idNoSSL certificate ID
sslNoSSL certificate configuration object

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "id": { "description": "SSL certificate ID", "type": [ "string", "null" ] }, "ssl": { "anyOf": [ { "additionalProperties": true, "description": "SSL certificate configuration object", "properties": { "cert": { "description": "SSL certificate in PEM format", "type": "string" }, "certs": { "description": "SSL certificates in PEM format", "items": { "type": "string" }, "type": "array" }, "client": { "additionalProperties": false, "description": "SSL client configuration", "properties": { "ca": { "description": "SSL client CA certificate in PEM format", "type": "string" }, "depth": { "default": 1, "description": "SSL client verification depth", "type": "number" }, "skip_mtls_uri_regex": { "description": "URIs to skip mTLS verification", "items": { "type": "string" }, "type": "array" } }, "required": [ "ca" ], "type": "object" }, "key": { "description": "SSL private key in PEM format", "type": "string" }, "keys": { "description": "SSL private keys in PEM format", "items": { "type": "string" }, "type": "array" }, "label": { "description": "SSL label", "type": "string" }, "sni": { "description": "Server Name Indication", "type": "string" }, "snis": { "description": "Server Name Indications", "items": { "type": "string" }, "type": "array" }, "status": { "description": "SSL certificate status", "enum": [ 0, 1 ], "type": "number" }, "type": { "default": "server", "description": "SSL type", "enum": [ "server", "client" ], "type": "string" }, "validity_end": { "description": "SSL certificate validity end timestamp", "type": "number" }, "validity_start": { "description": "SSL certificate validity start timestamp", "type": "number" } }, "type": "object" }, { "type": "null" } ], "description": "SSL certificate configuration object" } }, "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/api7/apisix-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server