-
Notifications
You must be signed in to change notification settings - Fork 11
Add support for Model Context Protocol #91
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 83 additions & 0 deletions
83
packages/vscode-integration/src/node/glsp-mcp-server-provider.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| /******************************************************************************** | ||
| * Copyright (c) 2026 EclipseSource and others. | ||
| * | ||
| * This program and the accompanying materials are made available under the | ||
| * terms of the Eclipse Public License v. 2.0 which is available at | ||
| * http://www.eclipse.org/legal/epl-2.0. | ||
| * | ||
| * This Source Code may also be made available under the following Secondary | ||
| * Licenses when the conditions for such availability set forth in the Eclipse | ||
| * Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
| * with the GNU Classpath Exception which is available at | ||
| * https://www.gnu.org/software/classpath/license.html. | ||
| * | ||
| * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
| ********************************************************************************/ | ||
| import { InitializeResult, McpInitializeResult, McpServerResult } from '@eclipse-glsp/protocol'; | ||
| import * as vscode from 'vscode'; | ||
|
|
||
| /** | ||
| * Bridges the embedded GLSP MCP server's announced URL into VS Code's built-in MCP host | ||
| * via {@link vscode.lm.registerMcpServerDefinitionProvider}. Adopters create one provider | ||
| * per extension and feed it the {@link InitializeResult} they get back from the GLSP server's | ||
| * `initialize` call (or an explicit {@link McpServerResult}); each entry then surfaces as a | ||
| * dynamic MCP server definition in VS Code. | ||
| * | ||
| * Companion contribution point in the consuming extension's `package.json`: | ||
| * ```json | ||
| * "contributes": { | ||
| * "mcpServerDefinitionProviders": [ | ||
| * { "id": "glsp", "label": "GLSP" } | ||
| * ] | ||
| * } | ||
| * ``` | ||
| * | ||
| * @example | ||
| * ```ts | ||
| * const provider = new GlspMcpServerProvider(); | ||
| * context.subscriptions.push(vscode.lm.registerMcpServerDefinitionProvider('glsp', provider)); | ||
| * const initializeResult = await glspVscodeServer.initializeResult; | ||
| * provider.addServer(initializeResult); | ||
| * ``` | ||
| */ | ||
| export class GlspMcpServerProvider implements vscode.McpServerDefinitionProvider, vscode.Disposable { | ||
| protected readonly servers = new Map<string, McpServerResult>(); | ||
| protected readonly didChangeEmitter = new vscode.EventEmitter<void>(); | ||
|
|
||
| readonly onDidChangeMcpServerDefinitions: vscode.Event<void> = this.didChangeEmitter.event; | ||
|
|
||
| /** | ||
| * Adds (or replaces by `name`) an MCP server entry. Accepts either the raw | ||
| * {@link InitializeResult} from a GLSP `initialize` call (a no-op if the response carries no | ||
| * `mcpServer` field) or an explicit {@link McpServerResult}. Returns the entry that was | ||
| * registered, or `undefined` if nothing was added. | ||
| */ | ||
| addServer(serverOrResult: InitializeResult | McpServerResult): McpServerResult | undefined { | ||
| const server = McpServerResult.is(serverOrResult) ? serverOrResult : McpInitializeResult.getServer(serverOrResult); | ||
| if (!server) { | ||
| return undefined; | ||
| } | ||
| this.servers.set(server.name, server); | ||
| this.didChangeEmitter.fire(); | ||
| return server; | ||
| } | ||
|
|
||
| /** Removes a previously-added entry by `name`. No-op if the entry is unknown. */ | ||
| removeServer(name: string): void { | ||
| if (this.servers.delete(name)) { | ||
| this.didChangeEmitter.fire(); | ||
| } | ||
| } | ||
|
|
||
| provideMcpServerDefinitions(): vscode.McpServerDefinition[] { | ||
| return [...this.servers.values()].map( | ||
| server => new vscode.McpHttpServerDefinition(server.name, vscode.Uri.parse(server.url), server.headers) | ||
| ); | ||
| } | ||
|
|
||
| dispose(): void { | ||
| this.servers.clear(); | ||
| this.didChangeEmitter.dispose(); | ||
| } | ||
| } | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use
mcpServer: this.options.mcpServer ?? {}?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because we do not want to set
mcpServerif it is not configured. Just setting the property is the opt-in for us to start the MCP server with default configuration.