Skip to content

Commit 34067c0

Browse files
[Docs] Update MCP server URLs and reorder usage sections (#7725)
1 parent 67abd0d commit 34067c0

File tree

1 file changed

+22
-21
lines changed

1 file changed

+22
-21
lines changed

apps/portal/src/app/ai/mcp/page.mdx

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,27 @@ Host: api.thirdweb.com
1515
x-secret-key <your-project-secret-key>
1616
```
1717

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+
1839
### Usage with agents
1940

2041
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.
@@ -29,7 +50,7 @@ client = MultiServerMCPClient(
2950
{
3051
"thirdweb-api": {
3152
"transport": "streamable_http",
32-
"url": "https://api.thirdweb-dev.com/mcp",
53+
"url": "https://api.thirdweb.com/mcp",
3354
"headers": {
3455
"x-secret-key": "<your-project-secret-key>"
3556
},
@@ -41,23 +62,3 @@ agent = create_react_agent("openai:gpt-4.1", tools)
4162
response = await agent.ainvoke({"messages": "create a server wallet called 'my-wallet'"})
4263
```
4364

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:
51-
52-
```json
53-
{
54-
"mcpServers": {
55-
"thirdweb-api": {
56-
"url": "https://api.thirdweb-dev.com/mcp",
57-
"headers": {
58-
"x-secret-key": "<your-project-secret-key>"
59-
}
60-
}
61-
}
62-
}
63-
```

0 commit comments

Comments
 (0)