Skip to content

Commit 49b0844

Browse files
committed
MCP Server to VS Code
1 parent e70c64c commit 49b0844

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
title: Add an MCP Server to VS Code
3+
summary: To register a MCP Server in VS Code open the command palette with (CMD + Shift + P) and search for "Add MCP"
4+
date_published: 2025-10-03T15:35:18+01:00
5+
keywords: mcp,idea,copilot
6+
---
7+
8+
# [%title]
9+
10+
[%summary]
11+
12+
![](https://images.sergiodelamo.com/vs-code-preference-add-mcp-server.png)
13+
14+
Select your MCP Server transport (STDIO or HTTP)
15+
16+
![](https://images.sergiodelamo.com/vs-code-mcp-server-transport-selection.png)
17+
18+
If HTTP, enter your MCP Server URL.
19+
20+
![](https://images.sergiodelamo.com/vs-code-mcp-server-enter-url.png)
21+
22+
Select whether you want to install the MCP Server globally or for the current workspace only.
23+
24+
![](https://images.sergiodelamo.com/vs-code-select-global-or-workspace.png)
25+
26+
Enter your MCP Server in the `mcp.json` configuration file.
27+
28+
The following example shows an MCP Server which uses Streamable HTTP transport.
29+
30+
```json
31+
{
32+
"servers": {
33+
"micronautfun": {
34+
"url": "https://micronaut.fun/mcp",
35+
"type": "http"
36+
}
37+
},
38+
"inputs": []
39+
}
40+
```
41+
42+
You should see your MCP listed as installed.
43+
44+
![](https://images.sergiodelamo.com/vs-code-mcp-servers-installed-micronaut-fun.png)

0 commit comments

Comments
 (0)