### Running Development Server (bash) Source: https://github.com/leomercier/mcp-tunnel/blob/main/README.md Starts the development server with hot-reloading for both the backend and frontend. Use this command during active development to see changes instantly. Requires project dependencies installed. ```bash npm run dev ``` -------------------------------- ### Starting Server with Automatic Tunneling (bash) Source: https://github.com/leomercier/mcp-tunnel/blob/main/README.md Runs the built project, starting the MCP server. By default, this command also initiates an automatic web tunnel for accessing the web interface. Requires the project to be built. ```bash npm start ``` -------------------------------- ### Installing and Running mcp-cli Globally (bash) Source: https://github.com/leomercier/mcp-tunnel/blob/main/README.md Installs the mcp-cli tool globally using npm, making the command available in your system's PATH. After installation, the tool can be run directly. Requires Node.js and npm. ```bash npm install -g mcp-cli mcp-cli ``` -------------------------------- ### Installing Local Development Dependencies (bash) Source: https://github.com/leomercier/mcp-tunnel/blob/main/README.md Installs the required project dependencies for local development after cloning the repository. This command must be run in the project directory. Requires Node.js and npm. ```bash npm install ``` -------------------------------- ### Building Project for Production (bash) Source: https://github.com/leomercier/mcp-tunnel/blob/main/README.md Builds both the frontend and backend code for production deployment. This command compiles and prepares the project for optimized execution. Requires project dependencies installed. ```bash npm run build-all ``` -------------------------------- ### Starting Server without Automatic Tunneling (bash) Source: https://github.com/leomercier/mcp-tunnel/blob/main/README.md Runs the built project, starting the MCP server. This command explicitly disables the automatic web tunneling feature. Requires the project to be built. ```bash npm start -- --no-tunnel ``` -------------------------------- ### Running mcp-cli with npx (bash) Source: https://github.com/leomercier/mcp-tunnel/blob/main/README.md Executes the mcp-cli command directly without requiring a global installation. This method is useful for quickly trying out the tool. Requires Node.js and npx. ```bash npx mcp-cli ``` -------------------------------- ### Cloning Repository for Local Development (bash) Source: https://github.com/leomercier/mcp-tunnel/blob/main/README.md Clones the mcp-cli source code repository from the specified URL. This is the first step to setting up the project for local development. Requires Git. ```bash git clone [repository-url] cd mcp-cli ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.