mcp: initial data flow for MCP gateway

Adds base startGateway method and data flows. Currently the route is just a stub.
This commit is contained in:
Connor Peet
2026-02-05 11:22:51 -08:00
parent 5bfd50175c
commit 6e029c339f
16 changed files with 663 additions and 0 deletions

View File

@@ -1736,6 +1736,10 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
checkProposedApiEnabled(extension, 'mcpServerDefinitions');
return extHostMcp.mcpServerDefinitions;
},
startMcpGateway() {
checkProposedApiEnabled(extension, 'mcpServerDefinitions');
return extHostMcp.startMcpGateway();
},
onDidChangeChatRequestTools(...args) {
checkProposedApiEnabled(extension, 'chatParticipantAdditions');
return _asExtensionEvent(extHostChatAgents2.onDidChangeChatRequestTools)(...args);