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
+
5
+
### Remote MCP endpoint
6
+
7
+
You can access the MCP server at the following url, with your project secret key.
8
+
9
+
```http
10
+
# endpoint
11
+
POST https://api.thirdweb.com/mcp
12
+
13
+
# auth header (required)
14
+
x-secret-key <your-project-secret-key>
15
+
```
16
+
17
+
### Usage with agents
18
+
19
+
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.
20
+
21
+
#### Example usage with langchain:
22
+
23
+
```python
24
+
from langchain_mcp_adapters.client import MultiServerMCPClient
response =await agent.ainvoke({"messages": "create a server wallet called 'my-wallet'"})
41
+
```
42
+
43
+
### Usage with LLM clients
44
+
45
+
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.
46
+
47
+
#### Example usage with Cursor:
48
+
49
+
Add the following to your `.cursor/mcp.json` file:
0 commit comments