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
You can use the thirdweb MCP server to interact with the thirdweb API from your agents or LLM client.
4
6
5
-
###Remote MCP endpoint
7
+
## Remote MCP endpoint
6
8
7
9
You can access the MCP server at the following url, with your project secret key.
8
10
9
11
```http
10
-
# endpoint
11
-
POST /mcp
12
-
Host: api.thirdweb.com
13
-
14
-
# auth header (required)
15
-
x-secret-key <your-project-secret-key>
12
+
POST https://api.thirdweb.com/mcp?secretKey=<your-project-secret-key>
16
13
```
17
14
18
-
### Usage with LLM clients
15
+
Make sure to keep your secret key safe and never share it with anyone.
16
+
17
+
## Usage with LLM clients
19
18
20
19
You can also use the MCP server on your own LLM client, like cursor, claude code and more. Refer to your LLM client's documentation for more information.
Run the following command to add the MCP server to your Claude Code configuration:
81
+
82
+
```bash
83
+
claude mcp add --transport http "thirdweb-api""https://api.thirdweb.com/mcp?secretKey=<your-project-secret-key>"
84
+
```
85
+
86
+
</TabsContent>
87
+
88
+
</Tabs>
89
+
90
+
## Usage with agents
40
91
41
92
Use your favorite agent framework to plug in the MCP server as a collection of tools for your agent. Refer to your agent framework's documentation for more information.
0 commit comments