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