File tree 3 files changed +11
-2
lines changed
exercises/01.ping/01.problem.connect
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ speed on some of the tools and concepts we'll be covering:
48
48
## System Requirements
49
49
50
50
- [ git] [ git ] v2.18 or greater
51
- - [ NodeJS] [ node ] v22.5 .0 or greater
51
+ - [ NodeJS] [ node ] v22.13 .0 or greater
52
52
- [ npm] [ npm ] v8.16.0 or greater
53
53
54
54
All of these must be available in your ` PATH ` . To verify things are set up
Original file line number Diff line number Diff line change 4
4
out of the box, so all we need to do is initialize the server, set up a
5
5
transport for it, and then it should respond to ` ping ` requests.
6
6
7
+ <callout-info >
8
+ ℹ️ NOTE: When initializing your MCP server, you'll need to provide ` name ` and
9
+ ` version ` fields. The ` name ` is a human-readable identifier for your server
10
+ (for example, ` MyProductName ` ), and the ` version ` indicates the version of
11
+ your server (such as ` 1.0.0 ` ). These fields help clients and tools identify
12
+ and interact with your server correctly, and are required by the MCP
13
+ specification.
14
+ </callout-info >
15
+
7
16
Start in <InlineFile file = " src/index.ts" /> and follow the instructions in the
8
17
comments.
9
18
Original file line number Diff line number Diff line change 46
46
" epicshop/mcp-dev"
47
47
],
48
48
"engines" : {
49
- "node" : " >=22.5 .0" ,
49
+ "node" : " >=22.13 .0" ,
50
50
"npm" : " >=8.16.0" ,
51
51
"git" : " >=2.18.0"
52
52
},
You can’t perform that action at this time.
0 commit comments