Skip to content

Commit ccecb55

Browse files
authored
Merge pull request #2 from edinc/create-your-mcp-update
Refactor MCP server configuration keys for consistency
2 parents aa50c04 + 35177a5 commit ccecb55

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

docs/hands-on/mcp-server-starter.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,7 +1271,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
12711271
=== "Windows"
12721272
```json
12731273
{
1274-
"mcpServers": {
1274+
"servers": {
12751275
"weather": {
12761276
"command": "uv",
12771277
"args": [
@@ -1288,7 +1288,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
12881288
=== "macOS/Linux"
12891289
```json
12901290
{
1291-
"mcpServers": {
1291+
"servers": {
12921292
"weather": {
12931293
"command": "uv",
12941294
"args": [
@@ -1307,7 +1307,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
13071307
=== "Windows"
13081308
```json
13091309
{
1310-
"mcpServers": {
1310+
"servers": {
13111311
"weather": {
13121312
"command": "node",
13131313
"args": ["C:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\weather-mcp\\build\\index.js"]
@@ -1319,7 +1319,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
13191319
=== "macOS/Linux"
13201320
```json
13211321
{
1322-
"mcpServers": {
1322+
"servers": {
13231323
"weather": {
13241324
"command": "node",
13251325
"args": ["/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather-mcp/build/index.js"]
@@ -1333,7 +1333,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
13331333
=== "Windows"
13341334
```json
13351335
{
1336-
"mcpServers": {
1336+
"servers": {
13371337
"weather": {
13381338
"command": "java",
13391339
"args": [
@@ -1348,7 +1348,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
13481348
=== "macOS/Linux"
13491349
```json
13501350
{
1351-
"mcpServers": {
1351+
"servers": {
13521352
"weather": {
13531353
"command": "java",
13541354
"args": [
@@ -1365,7 +1365,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
13651365
=== "Windows"
13661366
```json
13671367
{
1368-
"mcpServers": {
1368+
"servers": {
13691369
"weather": {
13701370
"command": "java",
13711371
"args": [
@@ -1380,7 +1380,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
13801380
=== "macOS/Linux"
13811381
```json
13821382
{
1383-
"mcpServers": {
1383+
"servers": {
13841384
"weather": {
13851385
"command": "java",
13861386
"args": [
@@ -1397,7 +1397,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
13971397
=== "Windows"
13981398
```json
13991399
{
1400-
"mcpServers": {
1400+
"servers": {
14011401
"weather": {
14021402
"command": "dotnet",
14031403
"args": [
@@ -1414,7 +1414,7 @@ For adding an MCP server in your workspace, create a `.vscode/mcp.json` file in
14141414
=== "macOS/Linux"
14151415
```json
14161416
{
1417-
"mcpServers": {
1417+
"servers": {
14181418
"weather": {
14191419
"command": "dotnet",
14201420
"args": [

0 commit comments

Comments
 (0)