solana-mcp-skill

solana-mcp-skill is a skill for Claude Code, Codex from visioneth/solana-mcp. It costs 0 tokens per session (1,182 once invoked), scanned A, original, MIT.

A skill that teaches AI agents how to use an MCP server to interact with the Solana blockchain, a network for digital-asset transactions and programs.

In plain words
What is it for?
It is for reading Solana data and carrying out transfers, swaps, token creation, minting, or burning, with network selection and confirmation requirements.
Why use it?
It adds guidance for handling Solana operations safely, especially transactions that can change funds or blockchain state.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for reading Solana data and carrying out transfers, swaps, token creation, minting, or burning, with network selection and confirmation requirements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/visioneth/solana-mcp/solana-mcp-skill
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 visioneth/solana-mcp --skill solana-mcp-skill
Clone the repo
git clone --depth 1 https://github.com/visioneth/solana-mcp

Made for: Claude Code, Codex.

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-mcp-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/visioneth/solana-mcp/solana-mcp-skill/github.svg)](https://agentmods.dev/skills/visioneth/solana-mcp/solana-mcp-skill)
Your own site
<a href="https://agentmods.dev/skills/visioneth/solana-mcp/solana-mcp-skill"><img src="https://agentmods.dev/badge/skills/visioneth/solana-mcp/solana-mcp-skill/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-mcp-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/visioneth/solana-mcp/solana-mcp-skill"><img src="https://agentmods.dev/badge/skills/visioneth/solana-mcp/solana-mcp-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,182 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00000 $0.01182
Opus 5 $0.00000 $0.00591
Sonnet 5 $0.00000 $0.00236
Haiku 4.5 $0.00000 $0.00118

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

Security

Grade A, and why

solana-mcp-skill scanned grade A with 0 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 10d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/solana-mcp-skill/SKILL.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Solana MCP Skill

This skill teaches AI agents how to interact with the Solana blockchain using the Solana MCP Server.

Setup

Add this to your MCP client configuration (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "solana-mcp": {
      "command": "npx",
      "args": ["-y", "@visioneth/solana-mcp@latest"],
      "env": {
        "PRIVATE_KEY": "your_base58_private_key_here",
        "SOLANA_RPC_URL": "https://api.mainnet-beta.solana.com"
      }
    }
  }
}

PRIVATE_KEY is only required for write operations (transfers, swaps, minting). Read-only tools work without it.

Safety Rules

CRITICAL: Network Specification for Write Operations

For ANY state-changing tool (transfer_sol, transfer_token, execute_swap, create_token, mint_tokens, burn_tokens):

  • You MUST ask the user which network to use if they haven't specified one
  • NEVER default to mainnet-beta for write operations
  • Defaulting to mainnet risks irreversible financial loss
  • Read-only tools may default to mainnet-beta

Transaction Confirmation

  • Always show the user what will happen before executing a write operation
  • Display: amount, destination, network, and estimated fees
  • Wait for explicit user confirmation

Available Tools

Wallet (7 tools)

  • get_balance — Get SOL balance of any address
  • get_account_info — Get detailed account info (owner, data size, executable)
  • transfer_sol — Send SOL to an address (requires PRIVATE_KEY)
  • request_airdrop — Get test SOL on devnet/testnet
  • get_transaction — Get transaction details by signature
  • get_recent_transactions — Get recent transactions for an address
  • get_wallet_address — Get the public key from configured PRIVATE_KEY

SPL Tokens (7 tools)

  • get_token_balance — Check token balance for a wallet
  • get_token_info — Get mint info (decimals, supply, authorities)
  • get_token_accounts — List all token holdings for a wallet
  • create_token — Create a new SPL token mint
  • mint_tokens — Mint tokens to an address
  • transfer_token — Transfer SPL tokens
  • burn_tokens — Burn SPL tokens

Read the full file on GitHub · 133 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 133 lines · 0 tokens per session scan A 226cafa78ad7

Subscribe to this mod's changes

solana-mcp-skill is a skill published in the GitHub repository visioneth/solana-mcp (1 stars, last pushed 28d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,182 tokens. A static security scan graded it A with 0 findings. 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

web3-research

Web3, cryptocurrency, and blockchain research skill for comprehensive crypto market and technology analysis.

incyd/claude-crypto-research-tools · 21 tokens

analyzing-ethereum-smart-contract-vulnerabilities

Perform static and symbolic analysis of Solidity smart contracts using Slither and Mythril to detect reentrancy, integer overflow, access control, and other vulnerability classes before deployment to Ethereum mainnet.

mukul975/Anthropic-Cybersecurity-Skills · 49 tokens

analyzing-ethereum-smart-contract-vulnerabilities

Perform static and symbolic analysis of Solidity smart contracts using Slither and Mythril to detect reentrancy, integer overflow, access control, and other vulnerability classes before deployment to Ethereum mainnet.

xalgorix/xalgorix · 49 tokens

rustchain-mcp

This skill allows Claude Code to interact with the RustChain blockchain, monitor the network, and hunt for bounties.

Scottcjn/rustchain-mcp · 0 tokens

blockchain-expert

Expert-level blockchain, Web3, smart contracts, DeFi, and cryptocurrency development. Use when the user mentions Web3, smart contracts, DeFi, Ethereum, or Solidity, or when the task involves Blockchain Fundamentals, Web3 & DeFi, Smart Contract Security, or Gas Optimization.

personamanagmentlayer/pcl · 63 tokens

blockchain-defi

Use this skill when asked about decentralized finance, DeFi protocols, AMM mechanics, lending and borrowing protocols, perpetual futures, yield farming, liquidity mining, liquid staking, restaking, yield optimization, DeFi security, MEV, and protocol composability. Covers AMM design (Uniswap, Curve, Balancer), lending…

j4flmao/agent-skills · 154 tokens