Seashail
Agent-native, self-hosted trading infrastructure for crypto and blockchain. Seamless OpenClaw integration. Contact https://x.com/TheHandsomeDev
Installation
npx seashailAsk AI about Seashail
Powered by Claude ยท Grounded in docs
I know everything about Seashail. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Seashail
English | ็ฎไฝไธญๆ
Agent-native, self-hosted trading infrastructure for crypto. Seamless OpenClaw integration.
Seashail is a local binary that exposes an MCP server over stdio. Agents can query balances, execute trades, and manage DeFi positions while Seashail enforces a policy engine and keeps key material encrypted at rest. The agent never sees private keys.
Full Documentation | Install | Quickstart | Supported Chains | MCP Tools | Security Model
Features
- 60+ MCP tools โ spot swaps, sends, bridging, DeFi (lending, staking, liquidity), perpetual futures, NFTs, prediction markets, pump.fun
- Policy engine โ per-transaction and daily USD caps, slippage limits, leverage caps, allowlists, operation toggles, tiered approval (auto-approve / confirm / hard-block)
- Non-custodial key storage โ Shamir 2-of-3 secret sharing for generated wallets, AES-256-GCM encryption for imported wallets, passphrase sessions with configurable TTL
- Multi-agent safe โ proxy/daemon architecture lets multiple agents (Claude Desktop, Cursor, Codex, etc.) share one keystore and passphrase session without split-brain
- Multi-chain โ Solana, Ethereum, Base, Arbitrum, Optimism, Polygon, BNB Chain, Avalanche, Monad, Bitcoin (+ configurable EVM chains and testnets)
- Agent-agnostic โ works with any MCP-capable client; one-click templates for 10+ agents/editors
- Scam protection โ optional signed scam-address blocklist, OFAC SDN checking, recipient/contract allowlists
- Verification โ release assets signed with Sigstore Cosign, SBOM generation (SPDX-JSON)
Install
Seashail is distributed via GitHub Releases and can also be built from source. Your agent runs it as an MCP stdio server via seashail mcp.
macOS / Linux (installer)
curl -fsSL https://seashail.com/install | sh
If seashail is not found after install, add the default install dir to your shell PATH:
export PATH="$HOME/.local/bin:$PATH"
Windows (PowerShell)
If you have WSL, you can run the macOS/Linux installer inside WSL. Otherwise:
irm https://seashail.com/install.ps1 | iex
No-Install Options
If you don't want to install the binary, reference these wrappers in your agent's MCP config instead. They install and run Seashail automatically.
npx (Node.js) โ see packages/mcp/:
- Command:
npx - Args:
-y @seashail/mcp --
uvx (Python) โ see python/:
- Command:
uvx - Args:
seashail-mcp
OpenClaw Users
seashail openclaw install
Or via the OpenClaw CLI:
openclaw plugins install @seashail/seashail
openclaw plugins enable seashail
openclaw gateway restart
See the OpenClaw setup guide for details.
Verify Installation
seashail doctor
This checks for common issues (missing dependencies, permissions, path configuration). The report contains no secrets and is safe to paste in issues. See the CLI reference for details.
Quickstart
1. Install Seashail
See Install above.
2. Connect Your Agent
Your agent starts Seashail automatically โ you just need to tell it how. Pick your agent:
OpenClaw (docs):
seashail openclaw install
Claude Code (docs):
claude mcp add seashail -- seashail mcp
Claude Desktop (docs):
seashail agent install claude-desktop
Codex (docs):
Add to ~/.codex/config.toml:
[mcp_servers.seashail]
command = "seashail"
args = ["mcp"]
Cursor (docs):
seashail agent install cursor
VS Code / GitHub Copilot (docs):
seashail agent install vscode
Windsurf (docs):
seashail agent install windsurf
Cline, Continue, JetBrains, or any MCP client โ see Agent Integration below or the full agent setup guide.
Testnet mode: Add
--network testnetto any of the above. For example:seashail agent install cursor --network testnetorclaude mcp add seashail-testnet -- seashail mcp --network testnet.
3. First Run
On first connection, Seashail automatically creates a default wallet (EVM, Solana, Bitcoin addresses) so your agent can immediately query balances โ no prompts required.
To create a wallet with stronger recovery options, ask your agent to call create_wallet. This uses MCP elicitation to:
- set a passphrase (min 8 characters, stored nowhere)
- show and confirm an offline backup share (Shamir 2-of-3)
- accept disclaimers
Key material never leaves the Seashail process. The agent only receives tool outputs (balances, quotes, tx hashes).
4. Verify
In your agent, try:
get_capabilitiesโ sanity check: see configured RPCs, swap backends, chainslist_walletsโ see your wallets and addressesget_balanceโ check balances
Architecture
Seashail uses a proxy-daemon architecture to allow multiple agents to share a single keystore and policy state safely.
โโโโโโโโโโโโโโโโโโโ
โ MCP Host โ (Agent: Claude Desktop, Cursor, etc.)
โ (stdio client) โ
โโโโโโโโโโฌโโโโโโโโโ
โ stdio (JSON-RPC over newline-delimited JSON)
โผ
โโโโโโโโโโโโโโโโโโโ
โ seashail mcp โ Lightweight stdio proxy
โ (proxy) โ - Injects network override params
โโโโโโโโโโฌโโโโโโโโโ - Auto-spawns daemon if needed
โ Unix socket / named pipe / TCP loopback
โผ
โโโโโโโโโโโโโโโโโโโ
โ seashail daemon โ Singleton process
โ โ - Holds exclusive keystore lock
โ โ - Manages passphrase session
โโโโโโโโโโฌโโโโโโโโโ - Coordinates all MCP clients
โ
โผ
โโโโโโโโโโโโโโโโโโโ
โ MCP Server โ Tool dispatch + elicitation
โ (in daemon) โ - Policy evaluation
โโโโโโโโโโฌโโโโโโโโโ - Key decryption + signing
โ - Transaction broadcast
โผ
โโโโโโโโโโโโโโโโโโโ
โ Policy Engine โ Gates every write operation
โ โ - Tiered approval (auto/confirm/block)
โโโโโโโโโโฌโโโโโโโโโ - USD caps, slippage, allowlists
โ
โผ
โโโโโโโโโโโโโโโโโโโ
โ Chain Layers โ Chain-specific adapters
โ (EVM/Solana/ โ - RPC communication
โ Bitcoin) โ - Transaction construction
โโโโโโโโโโโโโโโโโโโ - Broadcast
Why proxy + daemon?
- Multiple agents sharing state โ wallet created in Claude Desktop appears in Cursor; passphrase entered once unlocks everywhere; policy changes apply globally
- Concurrent access safety โ exclusive filesystem lock prevents keystore corruption from concurrent writes
- Passphrase session caching โ unlock once, use from all agents (configurable TTL, default 1 hour)
See the Architecture docs for full details on the data flow and layer responsibilities.
Supported Chains
| Chain | Identifier | Type |
|---|---|---|
| Solana | solana | Mainnet + Devnet |
| Ethereum | ethereum | Mainnet |
| Base | base | Mainnet |
| Arbitrum | arbitrum | Mainnet |
| Optimism | optimism | Mainnet |
| Polygon | polygon | Mainnet |
| BNB Chain | bnb | Mainnet |
| Avalanche | avalanche | Mainnet |
| Monad | monad | Mainnet |
| Bitcoin | bitcoin | Mainnet + Testnet (BIP-84 native SegWit) |
| Sepolia | sepolia | Testnet |
| Base Sepolia | base-sepolia | Testnet |
| Arbitrum Sepolia | arbitrum-sepolia | Testnet |
| Optimism Sepolia | optimism-sepolia | Testnet |
| Polygon Amoy | polygon-amoy | Testnet |
| BNB Testnet | bnb-testnet | Testnet |
| Avalanche Fuji | avalanche-fuji | Testnet |
| Monad Testnet | monad-testnet | Testnet |
Custom EVM chains can be added via config.toml. Use get_capabilities to see what's configured on your instance.
See the Chains docs for chain identifiers, network mode defaults, and RPC configuration.
MCP Tools
All tools are served over MCP stdio via seashail mcp. For chain-by-chain support, call get_capabilities.
Network and RPC
| Tool | Description |
|---|---|
get_network_mode | Check current mainnet/testnet mode |
set_network_mode | Switch network mode (persistent) |
configure_rpc | Override RPC endpoints |
get_testnet_faucet_links | Get faucet URLs for testnets |
get_capabilities | Discover chains, integrations, and surfaces |
Read Tools
| Tool | Description |
|---|---|
inspect_token | Look up token details (symbol, decimals, address) |
get_defi_yield_pools | Discover yield opportunities across protocols |
get_balance | Check token balance on a chain |
get_portfolio | Multi-chain portfolio overview |
get_token_price | Get USD price for a token |
estimate_gas | Estimate gas cost for an operation |
get_transaction_history | Recent transactions for a wallet |
get_portfolio_analytics | Portfolio analytics and tracking |
get_bridge_status | Track a bridge transfer |
Wallet Tools
| Tool | Description |
|---|---|
list_wallets | List all wallets |
get_wallet_info | Get wallet addresses and details |
get_deposit_info | Get deposit address for a chain/token |
set_active_wallet | Set the default wallet for tool calls |
add_account | Add a BIP-44 account index |
create_wallet | Create a new wallet (Shamir 2-of-3) |
import_wallet | Import an existing key/mnemonic |
export_shares | Export Shamir backup share |
rotate_shares | Rotate Shamir shares |
create_wallet_pool | Create a pool of managed wallets |
transfer_between_wallets | Internal transfer between wallets |
fund_wallets | Distribute funds across wallet pool |
Write Tools (Send, Swap, Bridge)
| Tool | Description |
|---|---|
request_airdrop | Request SOL airdrop (devnet/testnet only) |
send_transaction | Send native or fungible tokens |
swap_tokens | Swap tokens (Jupiter on Solana, Uniswap/1inch on EVM) |
bridge_tokens | Bridge tokens cross-chain (Wormhole, LayerZero) |
DeFi Tools
| Tool | Description |
|---|---|
lend_tokens | Supply tokens to lending protocols (Aave, Kamino, Compound, Marginfi) |
withdraw_lending | Withdraw supplied tokens + interest |
borrow_tokens | Borrow against collateral |
repay_borrow | Repay borrowed amounts |
get_lending_positions | View lending/borrowing positions |
stake_tokens | Stake for liquid staking derivatives (Lido, Jito) |
unstake_tokens | Unstake derivatives back to native tokens |
provide_liquidity | Add tokens to AMM pools (Uniswap LP, Orca LP) |
remove_liquidity | Withdraw from AMM pools |
Perps Tools
| Tool | Description |
|---|---|
get_market_data | Get market prices, funding rates |
get_positions | View open perpetual positions |
open_perp_position | Open a leveraged position (Hyperliquid, Jupiter Perps) |
close_perp_position | Close a position (full or partial) |
place_limit_order | Place a limit order (Hyperliquid) |
modify_perp_order | Modify an existing limit order (Hyperliquid) |
NFT Tools
| Tool | Description |
|---|---|
get_nft_inventory | List NFTs in wallet (Solana) |
transfer_nft | Transfer an NFT (Solana + EVM) |
buy_nft | Buy NFT via marketplace envelope (Blur, Magic Eden, OpenSea, Tensor) |
sell_nft | Sell/list NFT via marketplace envelope |
bid_nft | Place bid/offer via marketplace envelope |
Prediction Market Tools
| Tool | Description |
|---|---|
search_prediction_markets | Search Polymarket events |
get_prediction_orderbook | View CLOB orderbook depth |
get_prediction_positions | View open prediction positions |
place_prediction | Place a CLOB order on Polymarket |
close_prediction | Cancel an existing order |
Pump.fun Tools
| Tool | Description |
|---|---|
pumpfun_list_new_coins | Discover recently launched meme coins |
pumpfun_get_coin_info | Get detailed coin info |
pumpfun_buy | Buy a pump.fun token with SOL |
pumpfun_sell | Sell pump.fun tokens back to SOL |
Policy Tools
| Tool | Description |
|---|---|
get_policy | View current policy (global or per-wallet) |
update_policy | Update policy rules |
See the MCP Tools Reference for full parameter details and the individual tool reference pages.
Security Model
Seashail assumes the agent process may be malicious or compromised. The binary is the security boundary.
Key Storage
- Generated wallets use Shamir Secret Sharing (2-of-3): Share 1 encrypted with machine secret, Share 2 encrypted with machine key (or passphrase for portability), Share 3 shown once as offline backup
- Imported wallets are encrypted at rest using AES-256-GCM with a passphrase-derived key (Argon2id + HKDF subkeys)
- Key material is zeroized from memory after signing
Policy Engine
Every write operation is gated by:
- Per-transaction USD caps (
max_usd_per_tx) and daily USD caps (max_usd_per_day) - Slippage caps for swaps (
max_slippage_bps) - Leverage caps for perps (
max_leverage,max_usd_per_position) - Recipient allowlisting (
send_allowlist) and contract allowlisting (contract_allowlist) - Operation toggles (enable/disable sends, swaps, bridging, perps, NFTs individually)
- Tiered approvals via MCP elicitation:
- Auto-approve โ silent execution (low risk, within limits)
- User confirm โ MCP elicitation prompt (exceeds auto-approve threshold)
- Hard block โ rejection (exceeds hard cap or violates policy)
Threat Mitigations
| Threat | Mitigation |
|---|---|
| Malicious agent | Policy engine + tiered approvals + allowlists + operation toggles |
| Key theft from logs | MCP elicitation (keys never in agent conversation); tool schema rejects secret params |
| Split-brain state | Exclusive filesystem lock; singleton daemon |
| Passphrase theft | TTL-based sessions; zeroize on expiry; mlock on sensitive buffers |
| Phishing/scam addresses | Signed scam blocklist; OFAC SDN checking; recipient allowlists |
| Excessive spending | Per-tx and daily USD caps; operation toggles |
| Unknown USD value exploit | deny_unknown_usd_value (fail-closed by default) |
| Leverage explosion | max_leverage and max_usd_per_position caps |
Key Custody Comparison
| Aspect | Seashail | Browser Wallet | Cloud Custody |
|---|---|---|---|
| Key location | Local encrypted keystore | Browser extension | Remote server |
| Agent access | Policy-gated MCP tools | Direct signing | API with provider keys |
| Recovery | Shamir 2-of-3 + passphrase | Seed phrase | Provider flow |
| Risk model | Agent constrained by policy | User verifies every tx | Trusted third party |
See the Security Model docs for the full threat analysis.
Policy and Approvals
Seashail evaluates every write against policy before any key material is decrypted.
Common Controls
max_usd_per_tx Per-transaction USD cap
max_usd_per_day Daily USD cap (resets UTC midnight)
max_slippage_bps Swap slippage cap (basis points; 100 bps = 1%)
deny_unknown_usd_value Fail-closed when USD value unknown (default: true)
send_allow_any Allow sends to any address (vs allowlist-only)
send_allowlist Explicit list of permitted send addresses
contract_allow_any Allow interaction with any contract
contract_allowlist Explicit list of permitted contracts
enable_send Toggle sends on/off
enable_swap Toggle swaps on/off
enable_bridge Toggle bridging on/off
enable_perps Toggle perps on/off
max_leverage Cap leverage for perps
max_usd_per_position Cap perps position size
enable_nft Toggle NFT operations on/off
max_usd_per_nft_tx Cap per-NFT-transaction value
Viewing and Updating
get_policy View current policy (global or per-wallet)
update_policy Replace policy rules
Per-wallet overrides are supported: get_policy({ wallet }) and update_policy({ wallet, policy }).
See the Policy and Approvals Guide and the Policy Tools Reference for all 33+ policy fields.
Configuration
Paths
seashail paths
Output (JSON):
{
"config_dir": "/Users/you/.config/seashail",
"data_dir": "/Users/you/.local/share/seashail",
"log_file": "/Users/you/.local/share/seashail/seashail.log.jsonl"
}
Override with SEASHAIL_CONFIG_DIR and SEASHAIL_DATA_DIR environment variables.
Config File
config.toml lives under config_dir:
network_mode = "mainnet" # or "testnet"
[rpc]
solana_rpc_url = "https://api.mainnet-beta.solana.com"
[http]
binance_base_url = "https://api.binance.com"
jupiter_base_url = "https://api.jup.ag/swap/v1"
# 1inch requires an API key. If unset, swaps use Uniswap on EVM.
# oneinch_api_key = "..."
# Hyperliquid (perps)
hyperliquid_base_url_mainnet = "https://api.hyperliquid.xyz"
hyperliquid_base_url_testnet = "https://api.hyperliquid-testnet.xyz"
# Scam blocklist (optional)
# scam_blocklist_url = "https://example.com/seashail/scam-blocklist.json"
# scam_blocklist_pubkey_b64 = "..."
# scam_blocklist_refresh_seconds = 21600
Network Mode
Mainnet is the default. Network mode affects default chain selection when tools omit chain/chains.
- Persistent: set
network_mode = "testnet"inconfig.tomlor callset_network_modeover MCP - Per-session override:
seashail mcp --network testnet - First-run default:
export SEASHAIL_NETWORK_MODE=testnet(beforeconfig.tomlis created)
See the Network Mode Guide for Solana RPC defaults, airdrops, and faucet links.
CLI Reference
seashail mcp
Run the MCP server over stdio (proxy mode by default).
seashail mcp # Proxy mode (recommended)
seashail mcp --network testnet # Testnet override
seashail mcp --standalone # No daemon sharing
seashail daemon
Run the singleton daemon (shared state across MCP clients).
seashail daemon # Run until terminated
seashail daemon --idle-exit-seconds 300 # Auto-exit after 5 min idle
You usually don't need to run this manually โ seashail mcp auto-spawns the daemon.
seashail agent
Manage agent config templates.
seashail agent list # List supported targets
seashail agent print cursor # Print config to stdout
seashail agent install cursor # Install config
seashail agent install cursor --network testnet # Testnet template
Supported targets: cursor, vscode, windsurf, claude-desktop.
seashail openclaw install
Install the OpenClaw plugin integration.
seashail openclaw install
seashail openclaw install --network testnet
seashail openclaw install --link --plugin ./packages/openclaw-seashail-plugin # Dev
seashail doctor
Self-diagnostic report (contains no secrets, safe to paste in issues).
seashail doctor # Human-readable
seashail doctor --json # Machine-readable
seashail paths
Print resolved config, data, and log paths.
seashail paths
seashail upgrade
Upgrade to the latest version.
seashail upgrade # Interactive
seashail upgrade --yes # Non-interactive
seashail upgrade --yes --quiet # Silent (for scripts)
See the CLI Reference docs for full flag details.
Agent Integration
Seashail works with any MCP-capable agent. For agents not listed in Quickstart:
Generic MCP Stdio
Configure your agent to run:
- Command:
seashail - Args:
mcp
If your agent uses a JSON config file:
{
"mcpServers": {
"seashail": { "command": "seashail", "args": ["mcp"] }
}
}
Or:
{
"servers": {
"seashail": { "type": "stdio", "command": "seashail", "args": ["mcp"] }
}
}
Supported Agents
| Agent | Setup | Docs |
|---|---|---|
| OpenClaw | seashail openclaw install | Guide |
| Claude Code | claude mcp add seashail -- seashail mcp | Guide |
| Claude Desktop | seashail agent install claude-desktop | Guide |
| Codex | Edit ~/.codex/config.toml | Guide |
| Cursor | seashail agent install cursor | Guide |
| VS Code / GitHub Copilot | seashail agent install vscode | Guide |
| Windsurf | seashail agent install windsurf | Guide |
| Cline | Manual JSON config | Guide |
| Continue | Manual JSON config | Guide |
| JetBrains | Manual JSON config | Guide |
| Any MCP Client | Generic stdio config | Guide |
Static config templates are also available in packages/agent-configs/.
Multi-Client Behavior
Multiple agents safely share the same wallets, passphrase session, and policy counters via the singleton daemon. Each seashail mcp process is a lightweight proxy.
- macOS/Linux: Unix socket at
data_dir/seashail-mcp.sock - Windows: named pipe
Guides
These are summarized below. See the full documentation for complete details.
Wallets and Key Storage
- Generated wallets: Shamir 2-of-3 secret sharing (machine share + passphrase share + offline backup)
- Imported wallets: AES-256-GCM encrypted with passphrase-derived key
- Passphrase session: cached in memory with configurable TTL; shared across all MCP clients
- Tools:
create_wallet,import_wallet,list_wallets,get_wallet_info,get_deposit_info,export_shares,rotate_shares
Sending Tokens
send_transaction transfers native tokens (SOL, ETH, etc.) or fungible tokens (SPL, ERC-20). Seashail handles chain-specific mechanics (ATA creation on Solana, ERC-20 approval on EVM) and validates addresses before signing.
Swapping Tokens
swap_tokens routes automatically: Jupiter on Solana, Uniswap (or 1inch when configured) on EVM. Slippage tolerance is enforced by policy.
Bridging Tokens
bridge_tokens moves tokens cross-chain (Solana <-> EVM, EVM <-> EVM) via Wormhole (default) or LayerZero. Auto-redeem on destination chain is supported. Track progress with get_bridge_status.
DeFi Operations
Four DeFi primitives with protocol auto-selection:
| Operation | EVM Default | Solana Default |
|---|---|---|
| Lending | Aave v3 | Kamino |
| Borrowing | Aave v3, Compound v3 | Kamino, Marginfi |
| Staking | Lido (ETH -> stETH) | Jito (SOL -> JitoSOL) |
| Liquidity | Uniswap LP | Orca LP |
Perps Trading
Leveraged perpetual futures on two venues:
| Venue | Address | Testnet | Orders | Partial Close |
|---|---|---|---|---|
| Hyperliquid | EVM | Yes | Market + Limit | Yes |
| Jupiter Perps | Solana | No | Market only | No |
Policy controls: enable_perps, max_leverage, max_usd_per_position.
NFT Operations
Inventory reads, direct transfers, and marketplace trading via transaction envelopes.
Supported marketplaces: Blur (Ethereum), Magic Eden (Solana + cross-chain), OpenSea (Ethereum), Tensor (Solana).
Prediction Markets
Trade on Polymarket (CLOB on Polygon). Search markets, view orderbooks, place limit/market orders, track positions.
Pump.fun
Discover, buy, and sell meme coins on Pump.fun (Solana only). Bonding curve mechanics โ price moves with demand.
Chains and Funding
Get deposit addresses with get_deposit_info. For testnets, use get_testnet_faucet_links (EVM) or request_airdrop (Solana devnet/testnet).
Scam Blocklist
Optional signed scam-address blocklist. Opt-in via config.toml. Blocks sends and NFT transfers to known-bad addresses. Fail-open if fetch fails.
Verification
Release assets are signed with Sigstore Cosign. SBOM generation uses SPDX-JSON.
cosign verify-blob \
--certificate <asset>.crt \
--signature <asset>.sig \
<asset>
See the Verification docs for details.
Troubleshooting
Common issues and solutions:
| Error | Cause | Fix |
|---|---|---|
wallet_not_found | Wallet name doesn't exist | Run list_wallets, check spelling |
passphrase_required | Session expired | Re-enter passphrase on next tool call |
keystore_busy | Lock contention | Wait and retry; check for stuck daemon |
| Policy hard-block | Exceeds USD caps | Check get_policy, adjust limits |
| Slippage exceeded | Price moved too far | Increase max_slippage_bps or retry |
| Operation disabled | Toggle off in policy | Enable via update_policy |
| Allowlist rejection | Address not permitted | Add to allowlist or disable |
| Unknown USD value | No pricing data | Set deny_unknown_usd_value: false or retry |
| RPC connection error | Network/endpoint issue | Check connectivity, switch RPC |
| Wrong network | Mainnet/testnet confusion | Check get_network_mode, switch |
Run seashail doctor for a diagnostic report. See the Troubleshooting docs for full details.
Repo Layout
apps/
docs/ # Fumadocs + Next.js documentation site
landing/ # Next.js + React + Tailwind CSS landing page
crates/
seashail/ # Rust binary (CLI + daemon + MCP stdio bridge)
packages/
agent-configs/ # Static MCP config templates for editors/agents
config/ # Shared TypeScript config
e2e/ # End-to-end test harness (Bun)
mcp/ # npx-runnable MCP server wrapper (@seashail/mcp)
openclaw-seashail-plugin/ # OpenClaw plugin: exposes Seashail tools as native OpenClaw tools
oxlint/ # Custom Oxlint plugin
shared/ # Shared TypeScript types (TypeBox + Standard Schema)
skills-seashail/ # SKILL.md + agent-facing docs (Agent Skills spec)
web-theme/ # Shared CSS theme package
python/ # Python tooling (uvx runner)
reference/ # Archived reference documentation
Package READMEs
packages/mcp/โ@seashail/mcpnpx runnerpackages/agent-configs/โ Static MCP config templatespackages/openclaw-seashail-plugin/โ OpenClaw pluginpackages/e2e/โ End-to-end testspackages/skills-seashail/โ Agent Skills spec and workflowspython/โseashail-mcpuvx runner
Building from Source
Prerequisites: git, cargo (Rust toolchain), bun (for TypeScript packages).
git clone https://github.com/seashail/seashail.git
cd seashail
bun install
bun run build
bun run check
cargo build -p seashail
./target/debug/seashail --help
./target/debug/seashail doctor
To use the dev binary with your agent:
- Command:
./target/debug/seashail - Args:
mcp
Commands
bun install # Install dependencies
bun run build # Build TypeScript packages
bun run test # Run tests
bun run check # Type-check and lint
cargo build -p seashail # Build Rust binary
cargo test -p seashail # Run Rust tests
Contributing
Adding a Language
Seashail supports multiple locales. To add a new language, see the Adding a Language guide for step-by-step instructions covering both the docs site and landing page.
License
Apache-2.0
Contact
Github: TheHandsomeDev X/Twitter: TheHandsomeDev Telegram: TheHandsomeDev
