Replies: 2 comments
-
|
Hi @hudiehule, thanks for the detail. Could you confirm whether this is a server cert trust-chain issue or self-signed cert handling so I can direct you to exact config (SSL_VERIFY, cert chain, and transport overrides). |
Beta Was this translation helpful? Give feedback.
-
|
Hi @hudiehule, to disable SSL certificate verification for REST tools calling HTTPS endpoints with self-signed certificates: Set this environment variable: SKIP_SSL_VERIFY=trueThis disables SSL verification for all outbound HTTPS requests — REST tools, federation, upstream MCP servers, LLM providers, A2A agents ( In Docker Compose: environment:
SKIP_SSL_VERIFY: "true"In Helm: helm upgrade mcp-stack charts/mcp-stack -n mcp-private \
--set "mcpContextForge.config.SKIP_SSL_VERIFY=true"The value exists in Security warning: This disables SSL verification globally. For production with self-signed or internal CA certs, the better approaches are:
POST /gateways
{
"name": "my-server",
"url": "https://my-server:9000",
"ca_certificate": "-----BEGIN CERTIFICATE-----\n...\n-----END CERTIFICATE-----"
}The
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
i want to create a rest tool. the url of tool is 'https:xxx'. then i get the error "httpcore.ConnectError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1010)" when calling the tool. how can i close the SSL_CERT_VERIFY when calling the tool.
Beta Was this translation helpful? Give feedback.
All reactions