Sui

53 tools. 12 can modify or destroy data without limits.

3 destructive tools with no built-in limits. Policy required.

Last updated:

12 can modify or destroy data
41 read-only
53 tools total
Read (41) Write / Execute (9) Destructive / Financial (3)

Financial operations (request_withdraw_stake, transfer_objects, transfer_sui) can move real money. An agent caught in a loop could drain accounts before anyone notices.

Write operations (create_wallet, import_wallet, merge_coins) modify state. Without rate limits, an agent can make hundreds of changes in seconds — faster than any human can review or revert.

Execute tools (dry_run_transaction) trigger processes with side effects. Builds, notifications, workflows — all fired without throttling.

Block financial tools by default
request_withdraw_stake:
  rules:
    - action: deny

Financial tools should be explicitly enabled per use case, not open by default.

Rate limit write operations
create_wallet:
  rules:
    - rate_limit: 30/hour

Prevents bulk unintended modifications from agents caught in loops.

Cap read operations
cetus_get_pool:
  rules:
    - rate_limit: 60/minute

Controls API costs and prevents retry loops from exhausting upstream rate limits.

Can an AI agent move money through the Sui MCP server? +

Yes. The Sui server exposes 3 financial tools including request_withdraw_stake, transfer_objects, transfer_sui. Without a policy, an autonomous agent can call these with no spend caps, no rate limits, and no approval flow. Intercept lets you block financial tools by default or set per-tool rate limits.

How do I prevent bulk modifications through Sui? +

The Sui server has 8 write tools including create_wallet, import_wallet, merge_coins. Set rate limits in your policy file -- for example, rate_limit: 10/hour prevents an agent from making more than 10 modifications per hour. Intercept enforces this at the transport layer.

How many tools does the Sui MCP server expose? +

53 tools across 4 categories: Execute, Financial, Read, Write. 41 are read-only. 12 can modify, create, or delete data.

How do I add Intercept to my Sui setup? +

One line change. Instead of running the Sui server directly, prefix it with Intercept: intercept -c io-github-expertvagabond-sui-mcp-server.yaml -- npx -y @sui-mcp-server. Download a pre-built policy from policylayer.com/policies/io-github-expertvagabond-sui-mcp-server and adjust the limits to match your use case.

Other MCP servers with similar tools.

Starter policies available for each. Same risk classification, same one-command setup.

Let agents act without letting them run wild.

Deterministic policy on every MCP tool call. Per-identity grants. Full audit log.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.