You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contracts Wizard is a web application to interactively build a contract out of components from OpenZeppelin Contracts. Select the kind of contract that you want, set your parameters and desired features, and the Wizard will generate all of the code necessary. The resulting code is ready to be compiled and deployed, or it can serve as a starting point and customized further with application specific logic.
A Model Context Protocol (MCP) server that allows AI agents to generate smart contracts using the [OpenZeppelin Contracts Wizard](https://wizard.openzeppelin.com/).
5
+
A Model Context Protocol (MCP) server that allows AI agents to generate smart contracts using OpenZeppelin Contracts libraries.
6
+
7
+
This server runs locally and requires Node.js to be installed. For a hosted version, see [OpenZeppelin MCP Servers](https://mcp.openzeppelin.com/).
6
8
7
9
> [!WARNING]
8
10
> AI agents determine when and how to use the MCP server and therefore may produce inaccurate results. You should always review any information produced by the AI agent to ensure that any results are accurate and suit your purposes.
@@ -25,7 +27,7 @@ Provides tools to generate smart contract source code for the following language
25
27
26
28
For quick installation, use the button below.
27
29
28
-
[](https://cursor.com/install-mcp?name=openzeppelin-contracts-wizard&config=eyJjb21tYW5kIjoibnB4IC15IEBvcGVuemVwcGVsaW4vd2l6YXJkLW1jcCJ9)
30
+
[](https://cursor.com/install-mcp?name=OpenZeppelinContracts&config=ewogICJjb21tYW5kIjogIm5weCIsCiAgImFyZ3MiOiBbCiAgICAiLXkiLAogICAgIkBvcGVuemVwcGVsaW4vY29udHJhY3RzLW1jcCIKICBdCn0=)
29
31
30
32
For manual installation:
31
33
1. Go to Settings > Cursor Settings > Tools & Integrations > MCP Tools > New MCP Server.
@@ -34,9 +36,9 @@ For manual installation:
34
36
35
37
### Windsurf
36
38
37
-
1. Go to Settings > Windsurf Settings > Cascade > Manage Plugins > View raw config.
39
+
1. Go to Settings > Windsurf Settings > Cascade > Manage MCPs > View raw config.
38
40
2. Add the contents from the [Client Configuration](#client-configuration-cursorwindsurfclaude-desktop) section to your MCP configuration file and save.
39
-
3. Click Refresh on the Manage Plugins page.
41
+
3. Click Refresh on the Manage MCP Servers page.
40
42
4. See the MCP server in the list.
41
43
42
44
### Claude Desktop
@@ -51,11 +53,11 @@ For manual installation:
51
53
```json
52
54
{
53
55
"mcpServers": {
54
-
"openzeppelin-contracts-wizard": {
56
+
"OpenZeppelinContracts": {
55
57
"command": "npx",
56
58
"args": [
57
59
"-y",
58
-
"@openzeppelin/wizard-mcp"
60
+
"@openzeppelin/contracts-mcp"
59
61
]
60
62
}
61
63
}
@@ -65,27 +67,27 @@ For manual installation:
65
67
### Claude Code
66
68
67
69
```sh
68
-
claude mcp add openzeppelin-contracts-wizard -- npx -y @openzeppelin/wizard-mcp
70
+
claude mcp add OpenZeppelinContracts -- npx -y @openzeppelin/contracts-mcp
69
71
```
70
72
71
73
### VS Code
72
74
73
75
For quick installation, use one of the buttons below.
74
76
75
-
[](https://insiders.vscode.dev/redirect/mcp/install?name=openzeppelin-contracts-wizard&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%20%22%40openzeppelin%2Fwizard-mcp%22%5D%7D)
76
-
[](https://insiders.vscode.dev/redirect/mcp/install?name=openzeppelin-contracts-wizard&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%20%22%40openzeppelin%2Fwizard-mcp%22%5D%7D&quality=insiders)
77
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=OpenZeppelinContracts&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%20%22%40openzeppelin%2Fcontracts-mcp%22%5D%7D)
78
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=OpenZeppelinContracts&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%20%22%40openzeppelin%2Fcontracts-mcp%22%5D%7D&quality=insiders)
77
79
78
80
For manual installation:
79
81
1. Follow VS Code documentation to [Add an MCP server to your workspace](https://code.visualstudio.com/docs/copilot/chat/mcp-servers#_add-an-mcp-server-to-your-workspace) using the following configuration:
0 commit comments