@seashail/mcp
v0.1.1
Published
Run the Seashail MCP server in one line (npx).
Readme
@seashail/mcp
Run the Seashail MCP server in one line via npx. This is a thin wrapper that ensures seashail is installed and runs seashail mcp for you.
See the main README for full project documentation, or the Install docs for all installation methods.
Usage
npx -y @seashail/mcpPass through args to seashail mcp:
npx -y @seashail/mcp -- --network testnetUse in Agent MCP Config
If you don't want to install the seashail binary globally, reference this package in your agent's MCP config instead:
{
"mcpServers": {
"seashail": {
"command": "npx",
"args": ["-y", "@seashail/mcp", "--"]
}
}
}Testnet:
{
"mcpServers": {
"seashail-testnet": {
"command": "npx",
"args": ["-y", "@seashail/mcp", "--", "--network", "testnet"]
}
}
}How It Works
- If
seashailis already installed, the wrapper runs it directly - If
seashailis not installed, the wrapper executes the hosted installer:- macOS/Linux:
curl -fsSL https://seashail.com/install | sh - Windows (PowerShell):
irm https://seashail.com/install.ps1 | iex
- macOS/Linux:
- After installation, it runs
seashail mcpwith any provided args
Alternatives
- Direct install (recommended):
curl -fsSL https://seashail.com/install | sh— see Install docs - Python wrapper:
uvx seashail-mcp— seepython/ - One-click agent templates:
seashail agent install <target>— see Agent Integration
Related
- Main README — Full project documentation
- Agent Config Templates — Static config templates for editors/agents
- Install Docs — All installation methods
- Quickstart — First run guide
