solana-mcp-vybe

Query Solana blockchain accounts, tokens, and transactions through Vybe's public MCP server.

7|2|Updated May 16, 2026
One-click install
npx skills add https://github.com/reason-machines/mcp-skills --skill solana-mcp-vybe-reason-machines
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: solana-mcp-vybe
Source: https://github.com/reason-machines/mcp-skills/tree/main/skills/solana-mcp-vybe
Command: npx skills add https://github.com/reason-machines/mcp-skills --skill solana-mcp-vybe-reason-machines

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires mcp-remote.

What problem does it solve? Connecting AI agents to Solana blockchain data normally requires writing custom RPC integration code and managing API keys. This Skill lets MCP clients like Claude Desktop, Cursor, and VS Code query Solana accounts, SPL tokens, NFTs, and transactions directly through Vybe's hosted MCP server. ## Core Features & Use Cases - Account and Balance Queries: Fetch SOL balances, account info, and token accounts by owner across mainnet, devnet, and testnet. - Token and NFT Operations: Query SPL token metadata, Token-2022 extensions, and filter NFT holdings from token accounts. - Transaction Analysis: Retrieve transaction details, signatures, and history for any Solana address. - Use Case: Build a token portfolio viewer by asking your agent to fetch a wallet's SOL balance, list its token accounts, and pull metadata for each mint without writing any Solana SDK code. ## Quick Start Add the Vybe MCP server URL https://mcp.vybenetwork.xyz to your Cursor or Claude Desktop MCP configuration, restart the client, then ask your agent for the SOL balance of any Solana address.

Frequently Asked Questions about solana-mcp-vybe

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I connect Claude Desktop to a Solana MCP server?▼

Add an entry to claude_desktop_config.json using npx mcp-remote with the URL https://mcp.vybenetwork.xyz, then restart Claude Desktop. The Solana tools such as solana_get_balance and solana_get_transaction appear in the tool list after OAuth authorization.

How to query SPL token balances with an MCP client?▼

Ask your agent for token holdings of a wallet address and it calls solana_get_token_accounts with the owner address and network parameter. The response lists each token account's mint and balance, which you can enrich with solana_get_token_metadata.

Does the Vybe Solana MCP server require an API key?▼

No API keys are stored in configuration files. The public server uses OAuth authentication managed by your MCP client, which prompts for authorization on first connection.

Can I query Solana devnet instead of mainnet through MCP?▼

Yes, every tool accepts a network parameter set to mainnet-beta, devnet, or testnet. Specify the network in your request, for example asking for the devnet balance of an address.

Why does the Solana MCP tool return invalid address errors?▼

Solana addresses must be valid base58 strings, typically 32-44 characters, and transaction signatures are 87-88 characters. Verify the address format and confirm you are not mixing mainnet and devnet addresses.

What are the rate limits of the public Solana MCP server?▼

The public endpoint enforces rate limits that can cause timeouts under heavy load. For high-throughput production use, contact Vybe Network for enterprise access, host a private instance, or batch requests in your agent logic.