agentmode MCP server installation

The fastest way to install agentmode is via our 1-click VS code extension.

However, you can also install it manually. Open a terminal and run the following shell script

curl -LsSf https://raw.githubusercontent.com/agentmode/server/refs/heads/main/installation_scripts/mac.sh | bash

Or if you’d like to do it step-by-step:

  1. Install the uv package manager:
curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Install Python 3.13:

    uv python install 3.13
    
  2. Create an environment and install agentmode:

    uv init
    uv add agentmode
    
Updated on