Skip to content

Commit 075cb7e

Browse files
committed
improve instructions
1 parent 30a53cf commit 075cb7e

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ speed on some of the tools and concepts we'll be covering:
4848
## System Requirements
4949

5050
- [git][git] v2.18 or greater
51-
- [NodeJS][node] v22.5.0 or greater
51+
- [NodeJS][node] v22.13.0 or greater
5252
- [npm][npm] v8.16.0 or greater
5353

5454
All of these must be available in your `PATH`. To verify things are set up

exercises/01.ping/01.problem.connect/README.mdx

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44
out of the box, so all we need to do is initialize the server, set up a
55
transport for it, and then it should respond to `ping` requests.
66

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+
716
Start in <InlineFile file="src/index.ts" /> and follow the instructions in the
817
comments.
918

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"epicshop/mcp-dev"
4747
],
4848
"engines": {
49-
"node": ">=22.5.0",
49+
"node": ">=22.13.0",
5050
"npm": ">=8.16.0",
5151
"git": ">=2.18.0"
5252
},

0 commit comments

Comments
 (0)