solana-setup

solana-setup is a skill for Claude Code from widnyana/eyay-toolkits. It costs 69 tokens per session (581 once invoked), scanned C, original, MIT.

A setup and maintenance skill for the solana-onchain-mcp command-line program, which connects an agent to Solana blockchain data or actions through MCP.

In plain words
What is it for?
Use it to check, install, update, or verify the solana-onchain-mcp program.
Why use it?
It removes the need to manually check whether the program is installed, which version is present, or whether an update is available. It also verifies the installation after setup.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the solana-onchain plugin — 8 skills shipped together

Good fit Use it to check, install, update, or verify the solana-onchain-mcp program.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/widnyana/eyay-toolkits/solana-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add widnyana/eyay-toolkits --skill solana-setup
Clone the repo
git clone --depth 1 https://github.com/widnyana/eyay-toolkits

Made for: Claude Code.

Or install solana-onchain, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for solana-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/widnyana/eyay-toolkits/solana-setup/github.svg)](https://agentmods.dev/skills/widnyana/eyay-toolkits/solana-setup)
Your own site
<a href="https://agentmods.dev/skills/widnyana/eyay-toolkits/solana-setup"><img src="https://agentmods.dev/badge/skills/widnyana/eyay-toolkits/solana-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for solana-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/widnyana/eyay-toolkits/solana-setup"><img src="https://agentmods.dev/badge/skills/widnyana/eyay-toolkits/solana-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 581 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.00581
Opus 5 $0.00034 $0.00291
Sonnet 5 $0.00014 $0.00116
Haiku 4.5 $0.00007 $0.00058

Measured 9d ago against content hash 0610ce0f0607, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade C, and why

solana-setup scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

- **Prebuilt binary (recommended)**: `curl -fsSL https://raw.githubusercontent.com/widnyana/solana-onchain-mcp/refs/heads/main/install.sh | bash`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sf --connect-timeout 5 https://crates.io/api/v1/crates/solana-onchain-mcp | python3 -c "import sys,json; print(json.load(sys.stdin)['crate']['max_version'])" 2>/dev/null
plugins/solana-onchain/skills/solana-setup/SKILL.md · 56 lines

What it actually says

Install, update, or verify the solana-onchain-mcp binary.

Review: $ARGUMENTS

Instructions

status (default)

  1. Check binary exists: command -v solana-onchain-mcp
  2. If not found — report "solana-onchain-mcp is not installed" and skip to install section.
  3. If found — get installed version: solana-onchain-mcp --version
  4. Get latest version:
    curl -sf --connect-timeout 5 https://crates.io/api/v1/crates/solana-onchain-mcp | python3 -c "import sys,json; print(json.load(sys.stdin)['crate']['max_version'])" 2>/dev/null
    
    If network fails: report installed version only, warn that latest check failed.
  5. Compare versions and report:
    • Same: "v{version} is up to date."
    • Different: "Installed v{installed}, latest v{latest}. Run /solana-setup update."

install

  1. Confirm with user which method:
    • Prebuilt binary (recommended): curl -fsSL https://raw.githubusercontent.com/widnyana/solana-onchain-mcp/refs/heads/main/install.sh | bash
    • Cargo: cargo install solana-onchain-mcp
  2. Execute the chosen command.
  3. Verify: command -v solana-onchain-mcp && solana-onchain-mcp --version
  4. Report success with binary location and version.

update

  1. Check installed version: solana-onchain-mcp --version
  2. Check latest version (same as status step 4).
  3. If already latest: report "Already up to date."
  4. If outdated: confirm with user, then:
    • Prebuilt: re-run install.sh (always fetches latest)
    • Cargo: cargo install solana-onchain-mcp --force
  5. Verify new version after update.

Error handling

  • curl fails: suggest checking internet connection, offer to retry
  • cargo not found: suggest prebuilt method or installing Rust
  • Permission denied: suggest checking install directory permissions
  • Version check fails: still allow install, just can't compare versions
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 56 lines · 69 tokens per session scan C 0610ce0f0607

Subscribe to this mod's changes

solana-setup is a skill published in the GitHub repository widnyana/eyay-toolkits (7 stars, last pushed 6d ago), licensed MIT. It adds 69 tokens to every session and 581 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

metengine-data-agent

Real-time smart money analytics API for Polymarket prediction markets, Hyperliquid perpetual futures, and Meteora Solana LP/AMM pools. 63 endpoints. Pay-per-request via x402 on Solana Mainnet USDC. No API keys.

sendaifun/skills · 57 tokens

web3-protocol-gtm

Go-to-market strategy for web3 builders - protocols, products, services, and solo founders. Use when planning growth for a crypto protocol, building developer community, crafting CT narrative, planning ecosystem partnerships, preparing grant applications, launching tokens, pricing crypto-native products, or growing as…

tenequm/skills · 70 tokens

solana-development

Build, test, deploy, and audit Solana programs with Anchor or native Rust, and build with ZK Compression (Light Protocol). Use when developing Solana smart contracts, implementing token operations, optimizing compute, deploying to networks, auditing programs for vulnerabilities, or creating compressed tokens/PDAs.

tenequm/skills · 63 tokens

x402

Build internet-native payments with the x402 open protocol - HTTP 402 Payment Required for on-chain micropayments with no accounts or API keys. Use when developing paid APIs, paywalled content, AI agent payment flows, or MCP tools that charge per call. Covers the TypeScript, Python, and Go SDKs across EVM, Solana…

tenequm/skills · 86 tokens

meteora

Complete Meteora DeFi SDK suite for building liquidity pools, AMMs, bonding curves, vaults, token launches, and zap operations on Solana. Use when integrating DLMM, DAMM v2, DAMM v1, Dynamic Bonding Curves, Alpha Vaults, Zap, or Stake-for-Fee functionality.

sendaifun/skills · 69 tokens

erc-8004

Build with ERC-8004 Trustless Agents - on-chain agent identity, reputation, validation, and discovery on EVM chains. Use when registering AI agents on-chain, building agent reputation systems, searching/discovering agents, working with the Agent0 SDK (agent0-sdk), or implementing the ERC-8004 standard. Triggers on…

tenequm/skills · 97 tokens