Metadata-Version: 2.4
Name: seashail-mcp
Version: 0.1.0
Summary: Run the Seashail MCP server in one line via uvx.
Project-URL: Homepage, https://github.com/seashail/seashail
Project-URL: Repository, https://github.com/seashail/seashail
Author: Seashail
License-Expression: Apache-2.0
Keywords: crypto,mcp,trading,wallet
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# `seashail-mcp` (uvx runner)

Run the Seashail MCP server in one line via `uvx` (Python). This is a thin wrapper that ensures `seashail` is installed and runs `seashail mcp` for you.

> See the [main README](../README.md) for full project documentation, or the [Install docs](https://seashail.com/docs/getting-started/install) for all installation methods.

## Usage

```bash
uvx seashail-mcp
```

Pass through args to `seashail mcp`:

```bash
uvx seashail-mcp -- --network testnet
```

## Use 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:

```json
{
  "mcpServers": {
    "seashail": {
      "command": "uvx",
      "args": ["seashail-mcp"]
    }
  }
}
```

Testnet:

```json
{
  "mcpServers": {
    "seashail-testnet": {
      "command": "uvx",
      "args": ["seashail-mcp", "--", "--network", "testnet"]
    }
  }
}
```

## How It Works

- If `seashail` is already installed, the wrapper runs it directly
- If `seashail` is 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`
- After installation, it runs `seashail mcp` with any provided args

## Alternatives

- **Direct install (recommended):** `brew install seashail/seashail/seashail` or `curl -fsSL https://seashail.com/install | sh` — see [Install docs](https://seashail.com/docs/getting-started/install)
- **Node.js wrapper:** `npx -y @seashail/mcp` — see [`packages/mcp/`](../packages/mcp/)
- **One-click agent templates:** `seashail agent install <target>` — see [Agent Integration](../README.md#agent-integration)

## Related

- [Main README](../README.md) — Full project documentation
- [`packages/mcp/`](../packages/mcp/) — `@seashail/mcp` npx wrapper
- [Agent Config Templates](../packages/agent-configs/) — Static config templates for editors/agents
- [Install Docs](https://seashail.com/docs/getting-started/install) — All installation methods
- [Quickstart](https://seashail.com/docs/getting-started/quickstart) — First run guide
