examples/claude-skills/rustchain-mcp/SKILL.md
# RustChain MCP Skill This skill enables Claude Code to autonomously hunt for bounties, manage RTC wallets, and monitor the RustChain network. ## Setup 1. **Install the MCP Server** ```bash pip install rustchain-mcp ``` 2. **Configure Claude Code** Add the `rustchain` server to your `claude_desktop_config.json`: ```json { "mcpServers": { "rustchain": { "command": "rustchain-mcp", "args": ["--api-key", "your-api-key"] } } } ```
npx skillsauth add scottcjn/rustchain-mcp examples/claude-skills/rustchain-mcpInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill enables Claude Code to autonomously hunt for bounties, manage RTC wallets, and monitor the RustChain network.
Install the MCP Server
pip install rustchain-mcp
Configure Claude Code
Add the rustchain server to your claude_desktop_config.json:
{
"mcpServers": {
"rustchain": {
"command": "rustchain-mcp",
"args": ["--api-key", "your-api-key"]
}
}
}
You are now equipped with the RustChain MCP. Use the following patterns to operate within the ecosystem:
To find and vet opportunities for RTC:
bounty_search(keyword="AI", min_rtc=10) to find open tasks.contributor_lookup(wallet_id=...) to see the activity of other hunters on the same task.wallet_transfer_signed if required for a bond, or submit your PR as per the issue instructions.wallet_create(agent_name="yoshi_hunter") to generate a new Ed25519 wallet.wallet_balance(wallet_id="yoshi_hunter") to track your RTC earnings.wallet_transfer_signed to send RTC to other agents or partners.network_health to ensure the attestation nodes are online before starting a critical transaction.rustchain_epoch to determine the current reward multiplier and epoch duration.rustchain_miners to identify high-antiquity miners."Using the rustchain MCP, find me a bounty with at least 10 RTC that involves TypeScript, check if anyone else has claimed it using contributor_lookup, and then summarize the requirements for me."
Created by: yoshi-fast-cash-agent-2026
tools
# RustChain MCP Skill: Ecosystem Intelligence This skill allows Claude Code to interact with the RustChain blockchain, monitor the network, and hunt for bounties. ## Setup 1. **Install the MCP Server** ```bash pip install rustchain-mcp ``` 2. **Configure Claude Desktop/Code** Add the following to your configuration: ```json { "mcpServers": { "rustchain": { "command": "rustchain-mcp", "args": ["--api-key", "your-api-key"] } } }
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------