Sui MCP SHIT Minter
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SUI_NETWORK | No | Sui network (e.g., testnet, mainnet) | testnet |
| LP_RECIPIENT | Yes | LP recipient address | |
| FEE_RECIPIENT | Yes | Fee recipient address | |
| MCP_HTTP_HOST | No | HTTP server host | 127.0.0.1 |
| MCP_HTTP_PORT | No | HTTP server port | 3000 |
| MINT_FEE_MIST | No | Mint fee in MIST | 1000000000 |
| SUI_PACKAGE_ID | Yes | Sui package ID for the SHIT coin | |
| SUI_FULLNODE_URL | No | Sui full node URL | https://fullnode.testnet.sui.io:443 |
| MCP_ALLOWED_HOSTS | No | Allowed hosts for reverse proxy | |
| SHIT_MINT_CONFIG_ID | Yes | Shared MintConfig object ID | |
| SPONSOR_PRIVATE_KEY | No | Private key for sponsor (suiprivkey format) | |
| SPONSOR_KEYSTORE_PATH | No | Path to Sui keystore file for sponsor | |
| MCP_OAUTH_BEARER_TOKEN | Yes | OAuth bearer token for MCP authentication | |
| SPONSOR_KEYSTORE_INDEX | No | Index in keystore for sponsor | 0 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| healthA | Check that the MCP server is alive and configured for the selected Sui network. |
| quote_mint_feeB | Return the exact mint fee and amount for the SHIT mint flow. |
| check_mint_statusC | Check configured Sui package, treasury cap, and shared mint config objects. |
| check_user_mint_statusA | Check a user's SHIT balance, wallet mint count, remaining mints, and mint eligibility. |
| prepare_mintA | Prepare an unsigned Sui transaction that pays 1 SUI and mints 10M SHIT to the user's own address. |
| prepare_sponsored_mintA | Prepare an unsigned Sui transaction where the user signs as sender/recipient and the configured sponsor pays gas plus the 1 SUI mint fee. |
| submit_sponsored_mintA | Sign a prepared sponsored mint transaction as the configured sponsor and broadcast it with the user's signature. |
| prepare_configB | Prepare an unsigned admin transaction that creates the shared mint config after publishing the Move package. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool has a unique, clearly defined purpose: checking server objects, checking user status, health, preparing config, preparing mint transactions (regular and sponsored), quoting fees, and submitting sponsored transactions. No overlap.
All tool names follow a consistent verb_noun pattern with underscores (e.g., check_mint_status, prepare_mint, quote_mint_fee). No mixing of conventions.
8 tools is appropriate for the minting domain, covering health, configuration, status checks, fee quotes, and both regular and sponsored mint flows without unnecessary bloat or missing essentials.
The tool surface covers the full lifecycle: server health, config setup, user status, fee query, regular mint, sponsored mint preparation and submission. No obvious gaps for the intended purpose.