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
Copy file name to clipboardExpand all lines: apps/portal/src/app/ai/mcp/page.mdx
+22-21Lines changed: 22 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,27 @@ Host: api.thirdweb.com
15
15
x-secret-key <your-project-secret-key>
16
16
```
17
17
18
+
### Usage with LLM clients
19
+
20
+
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.
21
+
22
+
#### Example usage with Cursor:
23
+
24
+
Add the following to your `.cursor/mcp.json` file:
25
+
26
+
```json
27
+
{
28
+
"mcpServers": {
29
+
"thirdweb-api": {
30
+
"url": "https://api.thirdweb.com/mcp",
31
+
"headers": {
32
+
"x-secret-key": "<your-project-secret-key>"
33
+
}
34
+
}
35
+
}
36
+
}
37
+
```
38
+
18
39
### Usage with agents
19
40
20
41
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.
response =await agent.ainvoke({"messages": "create a server wallet called 'my-wallet'"})
42
63
```
43
64
44
-
### Usage with LLM clients
45
-
46
-
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.
47
-
48
-
#### Example usage with Cursor:
49
-
50
-
Add the following to your `.cursor/mcp.json` file:
0 commit comments