chore: Update docs for vscode MCP GA

This commit is contained in:
Brendan Kellam 2025-07-15 08:53:14 -07:00 committed by GitHub
parent 5ea6922509
commit 38b2749580
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 22 deletions

View file

@ -81,11 +81,10 @@ The [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP)
<Accordion title="VS Code">
[VS Code MCP docs](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
Add the following to your [settings.json](https://code.visualstudio.com/docs/copilot/chat/mcp-servers):
Add the following to your [.vscode/mcp.json](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server-to-your-workspace) file:
```json
{
"mcp": {
"servers": {
"sourcebot": {
"type": "stdio",
@ -98,7 +97,6 @@ The [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP)
}
}
}
}
```
Replace `http://localhost:3000` with wherever your Sourcebot instance is hosted.

View file

@ -87,11 +87,10 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
[VS Code MCP docs](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
Add the following to your [settings.json](https://code.visualstudio.com/docs/copilot/chat/mcp-servers):
Add the following to your [.vscode/mcp.json](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server-to-your-workspace) file:
```json
{
"mcp": {
"servers": {
"sourcebot": {
"type": "stdio",
@ -104,7 +103,6 @@ The Sourcebot MCP server gives your LLM agents the ability to fetch code context
}
}
}
}
```
</details>