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: docs/mcp-server/tools.mdx
+85-8Lines changed: 85 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,35 @@ description: "Complete reference of 28 MCP tools for blockchain operations"
4
4
icon: "wrench"
5
5
---
6
6
7
-
The Sei MCP Server provides 28 tools for blockchain operations. Ask your AI assistant using natural language or the exact tool names below.
7
+
The Sei MCP Server provides 28 tools for blockchain operations. **By default, wallet tools are disabled** and only read-only tools are available. [Enable wallet tools](/mcp-server/setup#wallet-connection) to unlock transaction capabilities.
8
8
9
-
## Core Operations
9
+
<Note>
10
+
**Wallet Tools Disabled by Default**
11
+
12
+
For security, wallet-dependent tools require explicit configuration. Only read-only blockchain data tools are available by default.
13
+
</Note>
14
+
15
+
## Read-Only Tools (Always Available)
16
+
17
+
These tools work without wallet connection and are available by default:
10
18
11
19
| Tool | Purpose | Example Usage |
12
20
|------|---------|---------------|
13
-
|`get_address_from_private_key`| Get wallet address | "What's my wallet address?" |
14
21
|`get_balance`| Check SEI balance | "What's my SEI balance?" |
15
-
|`transfer_sei`| Send SEI tokens | "Send 1 SEI to 0x742d..." |
16
22
|`is_contract`| Check if address is contract | "Is 0x3894... a contract?" |
17
23
|`estimate_gas`| Estimate transaction gas cost | "How much gas for this transaction?" |
18
24
25
+
## Wallet Tools (Require Configuration) 🔐
26
+
27
+
<Warning>
28
+
These tools require [wallet configuration](/mcp-server/setup#wallet-connection) and are **disabled by default** for security.
29
+
</Warning>
30
+
31
+
| Tool | Purpose | Example Usage |
32
+
|------|---------|---------------|
33
+
|`get_address_from_private_key`| Get wallet address | "What's my wallet address?" |
34
+
|`transfer_sei`| Send SEI tokens | "Send 1 SEI to 0x742d..." |
35
+
19
36
## Network & Blockchain Data
20
37
21
38
| Tool | Purpose | Example Usage |
@@ -27,40 +44,68 @@ The Sei MCP Server provides 28 tools for blockchain operations. Ask your AI assi
27
44
|`get_transaction`| Get transaction details | "Analyze transaction 0xabc..." |
28
45
|`get_transaction_receipt`| Get transaction receipt | "Get receipt for 0xabc..." |
29
46
30
-
## Token Management (ERC-20)
47
+
## Token Management
48
+
49
+
### Read-Only Token Tools
31
50
32
51
| Tool | Purpose | Example Usage |
33
52
|------|---------|---------------|
34
53
|`get_token_info`| Get ERC-20 token details | "Get info for token 0x3894..." |
35
54
|`get_token_balance`| Check token balance | "What's my USDC balance?" |
0 commit comments