+
+
Query Balance
+
"What's my SEI balance?"
+
→ Returns wallet balance and address
+
+
+
+
Send Transaction
+
"Send 1 SEI to 0x742d35Cc6634C0532925a3b8D4C1C4e3153DC"
+
→ Executes transfer and returns transaction hash
+
+
+
+
Contract Analysis
+
"Is 0x3894085ef7ff0f0aedf52e2a2704928d1ec074f1 a contract?"
+
→ Identifies contract type and metadata
+
+
+
+## Resource URIs
+
+Access blockchain data through standardized URIs:
+
+```bash
+# Network data
+evm://sei/chain
+evm://sei-testnet/chain
+
+# Block information
+evm://sei/block/latest
+evm://sei/block/12345
+
+# Transactions
+evm://sei/tx/0xabc123...
+evm://sei/tx/0xabc123.../receipt
+
+# Token data
+evm://sei/token/0x3894085ef7ff0f0aedf52e2a2704928d1ec074f1
+evm://sei/token/0x389.../balanceOf/0x742d...
+
+# NFT data
+evm://sei/nft/0xNFT_ADDRESS/123
+evm://sei/nft/0xNFT_ADDRESS/123/isOwnedBy/0x742d...
+```
+
+## Configuration
+
+### Environment Setup
+
+```bash
+# .env file
+PRIVATE_KEY=0x_your_private_key_here
+
+# Optional (coming soon)
+CUSTOM_RPC_URL=https://your-rpc.com
+CUSTOM_CHAIN_ID=1329
+```
+
+### HTTP Server Mode
+
+For web applications:
+
+```bash
+# Start HTTP server
+npx @sei-js/mcp-server --http
+
+# Connect from web app
+const eventSource = new EventSource('http://localhost:3001/sse');
+```
+
+## Security Guidelines
+
+