### Starting the Created Server Source: https://github.com/modelcontextprotocol/create-python-server/blob/main/README.md Provides the commands to navigate into the newly created server directory, synchronize dependencies using `uv`, and run the server application. ```sh cd my-server uv sync --dev --all-extras uv run my-server ``` -------------------------------- ### Creating a Server: Using pip Source: https://github.com/modelcontextprotocol/create-python-server/blob/main/README.md Details the alternative command using `pip` to install and then run the tool for creating a new Model Context Protocol server project. Requires UV >= 0.4.10. ```sh pip install create-mcp-server create-mcp-server ``` -------------------------------- ### Quick Overview: Create MCP Server (uvx & pip) Source: https://github.com/modelcontextprotocol/create-python-server/blob/main/README.md Shows the recommended `uvx` command and the alternative `pip` command for quickly creating a new Model Context Protocol server project. ```sh # Using uvx (recommended) uvx create-mcp-server # Or using pip pip install create-mcp-server create-mcp-server ``` -------------------------------- ### Creating a Server: Using uvx Source: https://github.com/modelcontextprotocol/create-python-server/blob/main/README.md Details the recommended command using `uvx` to initiate the process of creating a new Model Context Protocol server project. Requires UV >= 0.4.10. ```sh uvx create-mcp-server ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.