Skip to content

Commit 614a7d9

Browse files
committed
Made requested changes
1 parent de7df3f commit 614a7d9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

quickstart.mdx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ This quickstart assumes you have familiarity with:
5151
- Python or TypeScript
5252
- LLMs like Claude
5353

54-
It also helps to be familiar with [tool use (aka function calling)](https://docs.anthropic.com/en/docs/build-with-claude/tool-use), but it's not required.
55-
5654
### System requirements
5755

5856
For Python, make sure you have Python 3.9 or higher installed. For TypeScript, make sure you have the latest version of Node installed.
@@ -895,7 +893,7 @@ Add this configuration (replace the parent folder path):
895893
"weather": {
896894
"command": "node",
897895
"args": [
898-
"/PATH/TO/PARENT/FOLDER/mcp-quickstart/build/index.js",
896+
"/PATH/TO/PARENT/FOLDER/mcp-quickstart/build/index.js"
899897
]
900898
}
901899
}
@@ -928,7 +926,7 @@ Add this configuration (replace the parent folder path):
928926
"weather": {
929927
"command": "node",
930928
"args": [
931-
"C:\\PATH\TO\PARENT\FOLDER\mcp-quickstart\build\index.ts",
929+
"C:\\PATH\TO\PARENT\FOLDER\mcp-quickstart\build\index.ts"
932930
]
933931
}
934932
}
@@ -1018,7 +1016,7 @@ This isn't an error - it just means there are no current weather alerts for that
10181016
You can also check Claude's logs for errors like so:
10191017
```bash
10201018
# Check Claude's logs for errors
1021-
tail -f ~/Library/Application\ Support/Claude/Claude.log
1019+
tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
10221020
```
10231021

10241022
**Tool calls failing silently**

0 commit comments

Comments
 (0)