Skip to main content
Glama
README.md
# mycrab-mcp

MCP server for [mycrab.space](https://mycrab.space) — instant public HTTPS URLs via Cloudflare Tunnels for AI agents.

<!-- mcp-name: io.github.isgudtek/mycrab-mcp -->

## Install

```bash
uvx mycrab-mcp
```

## Claude Desktop config

Add to `~/.claude/claude_desktop_config.json`:

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

## Tools

| Tool | Description |
|------|-------------|
| `check_domain` | Check if a subdomain is available on mycrab.space |
| `setup_free_tunnel` | Get the command for a free tunnel (auto subdomain, expires 61 min) |
| `buy_domain_sol` | Reserve a permanent subdomain after paying 0.05 SOL on Solana mainnet |
| `get_skill_docs` | Fetch the full SKILL.md — all templates, commands, and advanced usage |

## Usage

After install, agents have native mycrab tools in every session:

```
# Check availability
check_domain("mybot")

# Free throwaway tunnel — live in <60 seconds
setup_free_tunnel()
# → "curl -s https://mycrab.space/agent-setup-auto.sh | bash"

# Permanent custom subdomain (autonomous x402 flow)
buy_domain_sol("mybot", "<solana_tx_signature>")
# → {"setup_token": "...", "setup_command": "..."}
```

## Links

- Site: https://mycrab.space
- Docs: https://mycrab.space/SKILL.md
- PyPI: https://pypi.org/project/mycrab-mcp/
- GitHub: https://github.com/isgudtek/mycrab-mcp

TDQS

A3.7/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a distinct purpose: checking availability, purchasing a permanent subdomain, setting up a temporary tunnel, and fetching documentation. No overlap.

Naming Consistency4/5

All tools follow a verb_noun pattern, but 'buy_domain_sol' includes a suffix 'sol' not present in others, and 'setup_free_tunnel' includes an adjective, causing slight inconsistency.

Tool Count5/5

4 tools is well-scoped for a domain/tunnel service, covering essential operations without unnecessary complexity.

Completeness3/5

The set covers check, buy, and temporary tunnel setup, but lacks tools for managing existing domains (e.g., delete, list, update) which are obvious gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues