Skip to content

Commit 5685d17

Browse files
committed
rename to simple_calculator_notebook for no naming conflict in workflow cleanup
Signed-off-by: Bryan Bednarski <[email protected]>
1 parent 0aec5d4 commit 5685d17

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

examples/notebooks/mcp_setup_and_integration.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
"<a id=\"start-mcp-servers\"></a>\n",
475475
"## 1.1) Starting the server with default settings\n",
476476
"\n",
477-
"First, let's install the `simple_calculator` example from NAT source.\n",
477+
"First, let's install the `simple_calculator` example from NAT source as `simple_calculator_notebook`, which we can edit and run.\n",
478478
"\n",
479479
"We recommend using the 'develop' branch in Google Colab."
480480
]
@@ -498,7 +498,7 @@
498498
"source": [
499499
"%%bash --bg\n",
500500
"# Then let's start up the simple calculator MCP server.\n",
501-
"nat mcp serve --config_file ./simple_calculator/configs/config.yml"
501+
"nat mcp serve --config_file ./simple_calculator_notebook/configs/config.yml"
502502
]
503503
},
504504
{
@@ -508,7 +508,7 @@
508508
"source": [
509509
"The `--bg` command will run your server in the background of the notebook, so you might not see confirmation that the server is running. To see the startup logs, you can remove this flag and run the cell again. However, subsequent steps require the server to be run as a background process.\n",
510510
"\n",
511-
"Next, we will list the set of available tools from `simple_calculator` MCP server."
511+
"Next, we will list the set of available tools from `simple_calculator_notebook` MCP server."
512512
]
513513
},
514514
{
@@ -542,7 +542,7 @@
542542
"\n",
543543
"You can also use the `sse` (Server-Sent Events) transport for backwards compatibility through the `--transport` flag, for example:\n",
544544
"```bash\n",
545-
"nat mcp serve --config_file examples/getting_started/simple_calculator/configs/config.yml --transport sse\n",
545+
"nat mcp serve --config_file ./simple_calculator_notebook/configs/config.yml --transport sse\n",
546546
"```\n",
547547
"With this configuration, the MCP server is available at `http://localhost:9901/sse` using SSE transport.\n",
548548
"\n",
@@ -581,7 +581,7 @@
581581
"outputs": [],
582582
"source": [
583583
"%%bash --bg\n",
584-
"nat mcp serve --config_file ./simple_calculator/configs/config.yml \\\n",
584+
"nat mcp serve --config_file ./simple_calculator_notebook/configs/config.yml \\\n",
585585
" --host 0.0.0.0 \\\n",
586586
" --port 9901 \\\n",
587587
" --name \"My MCP Server\""
@@ -640,7 +640,7 @@
640640
"outputs": [],
641641
"source": [
642642
"%%bash --bg\n",
643-
"nat mcp serve --config_file ./simple_calculator/configs/config.yml \\\n",
643+
"nat mcp serve --config_file ./simple_calculator_notebook/configs/config.yml \\\n",
644644
" --tool_names calculator.multiply \\\n",
645645
" --tool_names calculator.divide \\\n",
646646
" --host 0.0.0.0 \\\n",
@@ -971,7 +971,7 @@
971971
"outputs": [],
972972
"source": [
973973
"%%bash --bg\n",
974-
"nat mcp serve --config_file simple_calculator/configs/config.yml \\\n",
974+
"nat mcp serve --config_file simple_calculator_notebook/configs/config.yml \\\n",
975975
" --host 0.0.0.0 \\\n",
976976
" --port 9901 \\\n",
977977
" --name \"My MCP Server\""
@@ -1092,7 +1092,7 @@
10921092
"outputs": [],
10931093
"source": [
10941094
"%%bash --bg\n",
1095-
"nat mcp serve --config_file simple_calculator/configs/config.yml \\\n",
1095+
"nat mcp serve --config_file simple_calculator_notebook/configs/config.yml \\\n",
10961096
" --host 0.0.0.0 \\\n",
10971097
" --port 9901 \\\n",
10981098
" --name \"My MCP Server\""

0 commit comments

Comments
 (0)