### Install and Build FlyMCP (Bash) Source: https://github.com/superfly/flymcp/blob/main/README.md This snippet covers cloning the FlyMCP repository, downloading Go dependencies, and building the executable binary. It assumes Git and Go are installed and available. ```bash git clone https://github.com/superfly/flymcp.git cd flymcp go mod download go build -o flymcp ``` -------------------------------- ### Configure FlyMCP in Claude Desktop (JSON) Source: https://github.com/superfly/flymcp/blob/main/README.md This JSON configuration snippet demonstrates how to register the FlyMCP server within Claude Desktop's settings. It requires the absolute path to the compiled flymcp binary. ```json { "mcpServers": { "flymcp": { "command": "/full/path/to/your/flymcp", "args": [] } } } ``` -------------------------------- ### Authenticate with Fly.io (Bash) Source: https://github.com/superfly/flymcp/blob/main/README.md This command authenticates the user with the Fly.io platform using the flyctl CLI. It's a prerequisite for using FlyMCP's functionalities. ```bash flyctl auth login ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.