@@ -4,7 +4,7 @@ An MCP (Model Context Protocol) server that provides local access to Aztec docum
44
55## Features
66
7- - ** Version Support** : Clone specific Aztec release tags (e.g., ` v3 .0.0-devnet.6 -patch.1` )
7+ - ** Version Support** : Clone specific Aztec release tags (e.g., ` v4 .0.0-devnet.2 -patch.1` )
88- ** Local Repository Cloning** : Automatically clones Aztec repositories with sparse checkout for efficiency
99- ** Fast Code Search** : Search Noir contracts and TypeScript files using ripgrep (with fallback)
1010- ** Documentation Search** : Search Aztec documentation by section
@@ -34,9 +34,9 @@ Add to your `.mcp.json`:
3434``` json
3535{
3636 "mcpServers" : {
37- "aztec-local " : {
37+ "aztec-mcp " : {
3838 "command" : " npx" ,
39- "args" : [" -y" , " @aztec/mcp-server@latest" ]
39+ "args" : [" --prefer-online " , " - y" , " @aztec/mcp-server@latest" ]
4040 }
4141 }
4242}
@@ -57,14 +57,14 @@ Clones:
5757
5858** Parameters:**
5959
60- - ` version ` (string): Aztec version tag to clone (e.g., ` v3 .0.0-devnet.6 -patch.1` ). Defaults to latest supported version.
60+ - ` version ` (string): Aztec version tag to clone (e.g., ` v4 .0.0-devnet.2 -patch.1` ). Defaults to latest supported version.
6161- ` force ` (boolean): Force re-clone even if repos exist
6262- ` repos ` (string[ ] ): Specific repos to sync
6363
6464** Example - Clone specific version:**
6565
6666```
67- aztec_sync_repos({ version: "v3 .0.0-devnet.6 -patch.1" })
67+ aztec_sync_repos({ version: "v4 .0.0-devnet.2 -patch.1" })
6868```
6969
7070### ` aztec_status `
@@ -133,9 +133,9 @@ Override with the `AZTEC_MCP_REPOS_DIR` environment variable:
133133``` json
134134{
135135 "mcpServers" : {
136- "aztec-local " : {
136+ "aztec-mcp " : {
137137 "command" : " npx" ,
138- "args" : [" -y" , " @aztec/mcp-server" ],
138+ "args" : [" --prefer-online " , " - y" , " @aztec/mcp-server" ],
139139 "env" : {
140140 "AZTEC_MCP_REPOS_DIR" : " /custom/path"
141141 }
@@ -151,9 +151,9 @@ Set the default Aztec version with the `AZTEC_DEFAULT_VERSION` environment varia
151151``` json
152152{
153153 "mcpServers" : {
154- "aztec-local " : {
154+ "aztec-mcp " : {
155155 "command" : " npx" ,
156- "args" : [" -y" , " @aztec/mcp-server" ],
156+ "args" : [" --prefer-online " , " - y" , " @aztec/mcp-server" ],
157157 "env" : {
158158 "AZTEC_DEFAULT_VERSION" : " v3.0.0-devnet.6-plugin.1"
159159 }
0 commit comments