### Clone Repository and Install Dependencies (Bun) Source: https://github.com/laptou/rust-docs-mcp-server/blob/main/README.md Commands to clone the rust-docs-mcp-server repository from GitHub and install its dependencies using the Bun package manager. ```bash git clone https://github.com/yourusername/rust-docs-mcp-server.git cd rust-docs-mcp-server bun install ``` -------------------------------- ### Build the Server (Bun) Source: https://github.com/laptou/rust-docs-mcp-server/blob/main/README.md Command to build the server project using Bun, preparing it for production or distribution. ```bash bun run build ``` -------------------------------- ### Run Tests (Bun) Source: https://github.com/laptou/rust-docs-mcp-server/blob/main/README.md Command to execute the project's test suite using the Bun test runner. ```bash bun test ``` -------------------------------- ### Run the Server (Bun) Source: https://github.com/laptou/rust-docs-mcp-server/blob/main/README.md Commands to either run the server in development mode (with hot-reloading) or execute the compiled server from the build directory. ```bash bun run dev # Or run the built server bun run start ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.