From b9539acdf06f73c66e277697cd7b4328ae270402 Mon Sep 17 00:00:00 2001 From: arimariojesus Date: Mon, 16 Jun 2025 23:18:29 -0400 Subject: [PATCH] docs(unit1): ensures correct closing of the code block --- units/en/unit1/sdk.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/units/en/unit1/sdk.mdx b/units/en/unit1/sdk.mdx index 7af12b4..e1c9566 100644 --- a/units/en/unit1/sdk.mdx +++ b/units/en/unit1/sdk.mdx @@ -49,16 +49,15 @@ def weather_report(location: str) -> str: # Run the server if __name__ == "__main__": mcp.run() +``` Once you have your server implemented, you can start it by running the server script. ```bash mcp dev server.py ``` - -``` - + ```javascript