### Installing Dependencies for CVE-Search MCP (Shell) Source: https://github.com/roadwy/cve-search_mcp/blob/main/README.md These commands navigate into the cloned repository directory and then use 'uv' to synchronize and install all required project dependencies, preparing the server for execution. ```Shell cd cve-search_mcp uv sync ``` -------------------------------- ### Cloning the CVE-Search MCP Repository (Git) Source: https://github.com/roadwy/cve-search_mcp/blob/main/README.md This command clones the CVE-Search MCP server repository from GitHub to your local machine, providing access to the project's source code. ```Shell git clone https://github.com/roadwy/cve-search_mcp.git ``` -------------------------------- ### Configuring CVE-Search MCP in MCP Client (JSON) Source: https://github.com/roadwy/cve-search_mcp/blob/main/README.md This JSON snippet illustrates how to add the CVE-Search MCP server to an MCP client's configuration file. It specifies the command to run the server, its arguments, and enables the server, requiring the user to update the directory path. ```JSON "cve-search_mcp": { "command": "uv", "args": [ "--directory", "YOU_CVE_SEARCH_MCP_DIR_PATH", "run", "main.py" ], "disabled": false, "autoApprove": [] } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.