-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Open
Labels
area:mcpRelates to Model Context Protocol (MCP)Relates to Model Context Protocol (MCP)good-first-issueSuggested issue for new contributorsSuggested issue for new contributorskind:bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorpriority:mediumIndicates medium priorityIndicates medium priority
Description
Before submitting your bug report
- I believe this is a bug. I'll try to join the Continue Discord for questions
- I'm not able to find an open issue that reports the same bug
- I've seen the troubleshooting guide on the Continue Docs
Relevant environment info
Description
My sse / streamable-http MCP server needs to verify SSL. Currently, I need to turn off SSL verification for debugging.
In the config.yaml file, I can configure the following parameters to AI model to turn off SSL verification:
requestOptions:
verifySsl: false
But this configuration does not work in the mcpServers configuration item.
In the current code, only requestOptions.headers is used, BUT ,requestOptions.verifySsl is not used, so even if I configure verifySsl in config.yaml, it is not really used. so I can't turn off verifySsl for my mcp URL
core/context/mcp/MCPConnection.ts
case "streamable-http":
return new StreamableHTTPClientTransport(
new URL(options.transport.url),
{
requestInit: { headers: options.transport.requestOptions?.headers },
},
);
To reproduce
No response
Log output
Symfomany
Metadata
Metadata
Assignees
Labels
area:mcpRelates to Model Context Protocol (MCP)Relates to Model Context Protocol (MCP)good-first-issueSuggested issue for new contributorsSuggested issue for new contributorskind:bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorpriority:mediumIndicates medium priorityIndicates medium priority
Type
Projects
Status
Todo