@@ -41,7 +41,7 @@ To install or upgrade to the **latest release** of Apollo MCP Server:
4141 <Tab label = " Windows" >
4242
4343 ``` terminal showLineNumbers=false
44- iwr 'https://mcp.apollo.dev/download/win/latest' | iex
44+ iwr 'https://mcp.apollo.dev/download/win/latest' | iex
4545 ```
4646 </Tab >
4747
@@ -55,7 +55,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
5555
5656 ``` terminal showLineNumbers=false
5757 # Note the `v` prefixing the version number
58- curl -sSL https://mcp.apollo.dev/download/nix/v0.7.4 | sh
58+ curl -sSL https://mcp.apollo.dev/download/nix/v1.1.1 | sh
5959 ```
6060
6161 </Tab >
@@ -64,7 +64,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
6464
6565 ``` terminal showLineNumbers=false
6666 # Note the `v` prefixing the version number
67- iwr 'https://mcp.apollo.dev/download/win/v0.7.4 ' | iex
67+ iwr 'https://mcp.apollo.dev/download/win/v1.1.1 ' | iex
6868 ```
6969 </Tab >
7070
@@ -78,7 +78,7 @@ To install or upgrade to a specific version of Apollo MCP Server that is a **rel
7878
7979 ``` terminal showLineNumbers=false
8080 # Note the `v` prefixing the version number and the `-rc` suffix
81- curl -sSL https://mcp.apollo.dev/download/nix/v0.7.4 -rc.1 | sh
81+ curl -sSL https://mcp.apollo.dev/download/nix/v1.1.1 -rc.1 | sh
8282 ```
8383
8484 </Tab >
@@ -87,7 +87,7 @@ To install or upgrade to a specific version of Apollo MCP Server that is a **rel
8787
8888 ``` terminal showLineNumbers=false
8989 # Note the `v` prefixing the version number and the `-rc` suffix
90- iwr 'https://mcp.apollo.dev/download/win/v0.7.4 -rc.1' | iex
90+ iwr 'https://mcp.apollo.dev/download/win/v1.1.1 -rc.1' | iex
9191 ```
9292 </Tab >
9393
@@ -124,14 +124,14 @@ To download a **specific version** of Apollo MCP Server (recommended for CI envi
124124
125125``` bash
126126# Note the `v` prefixing the version number
127- docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.7.4
127+ docker image pull ghcr.io/apollographql/apollo-mcp-server:v1.1.1
128128```
129129
130130To download a specific version of Apollo MCP Server that is a release candidate:
131131
132132``` bash
133133# Note the `v` prefixing the version number and the `-rc` suffix
134- docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.7.4 -rc.1
134+ docker image pull ghcr.io/apollographql/apollo-mcp-server:v1.1.1 -rc.1
135135```
136136
137137<Note >
0 commit comments