-
Notifications
You must be signed in to change notification settings - Fork 31.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test: MCP server extension API #244526
Comments
@connor4312 Blocked on this error: |
@karthiknadig where is that coming from? The sample refers to mcpConfigurationProvider https://github.com/microsoft/vscode-extension-samples/blob/main/mcp-extension-sample/package.json#L3 |
Copilot got it wrong, and I did not realize. |
@connor4312 , I am really struggling with this one. I am using the following minimal sample code: context.subscriptions.push(vscode.lm.registerMcpConfigurationProvider('exampleGist', {
onDidChange: didChangeEmitter.event,
provideMcpServerDefinitions: async () => {
return [
{
label: 'file_system',
command: "npx",
args: [
"-y",
"@modelcontextprotocol/server-filesystem",
"Users/lszomoru/Source/lszomoru"
],
env: {}
}
];
}
})); When I run the code, I see that the Chat Panel knows about the new server, lists the number of new tools, but pressing "Refresh" hangs. Clicking on the server buttons opens a channel that has 'undefined` as the name: ![]() In the debug console I see the following exception:
|
Ref: #243522
Complexity: 5
Authors: @jrieken @connor4312
Create Issue
This iteration we've added support for Model Context Protocol (MCP) servers that provide additional tools the LM can use in Agent mode. You can refer to #244525 for general setup/mechanics.
In addition to user-configured MCP servers, there are also extension-configured MCP servers, and we have a sample of one: https://github.com/microsoft/vscode-extension-samples/tree/main/mcp-extension-sample. There are some lifecycle complexities here that aren't present for normal config servers, and please test them:
McpConfigurationProvider.onDidChange
, you should also get a refresh button if there are any new servers that were published. Any old servers that no longer exist should be removed.The text was updated successfully, but these errors were encountered: