### Install uv (bash) Source: https://github.com/edenyavin/osv-mcp/blob/main/README.md This command installs the `uv` package using pip, a fast Python package installer and resolver. `uv` is required for managing the OSV-MCP server dependencies. ```bash pip install uv ``` -------------------------------- ### Install OSV-MCP via Smithery (bash) Source: https://github.com/edenyavin/osv-mcp/blob/main/README.md This command installs the OSV-MCP server using the Smithery CLI. It downloads and installs the specified server package for a specified client (e.g., Claude). ```bash npx -y @smithery/cli install @EdenYavin/OSV-MCP --client claude ``` -------------------------------- ### Install uv via Homebrew (bash) Source: https://github.com/edenyavin/osv-mcp/blob/main/README.md This command installs the `uv` package using Homebrew, a package manager for macOS. `uv` is required for managing the OSV-MCP server dependencies. ```bash brew install uv ``` -------------------------------- ### Check Python Version (bash) Source: https://github.com/edenyavin/osv-mcp/blob/main/README.md This command checks the installed Python version. It's a prerequisite to ensure Python 3.11 or higher is installed to run the OSV-MCP server. ```bash python --version ``` -------------------------------- ### MCP Server Configuration (JSON) Source: https://github.com/edenyavin/osv-mcp/blob/main/README.md This JSON configuration defines the OSV-MCP server settings for MCP hosts like Cursor or Claude Desktop. It specifies the command to run the server, arguments for the command, and environment variables. ```json { "mcpServers": { "osv-mcp": { "command": "uv", "args": ["--directory", "path-to/OSV-MCP", "run", "osv-server"], "env": {} } } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.