Amoca Solana MCP Server

Provides an AI agent for Solana blockchain development through a standardized Model Context Protocol (MCP) interface.

Local serverstdioTypeScript 5

What is the Amoca Solana MCP server?

If you already use Amoca Solana, the amoca solana mcp server is the piece that lets your assistant work with it directly. Provides an AI agent for Solana blockchain development through a standardized Model Context Protocol (MCP) interface.

What the server does

This repository demonstrates an implementation of an Autonomous Merit On Chain Agent (AMOCA) for Solana development, built on the Model Context Protocol (MCP).

AMOCA (Autonomous Merit On Chain Agent) is an intelligent agent that provides enhanced capabilities for Solana blockchain development through a standardized interface. This implementation showcases:

  • Solana RPC Tools — Query account information, check balances, and analyze transactions
  • Wallet Management — Create and import Solana wallets
  • Trading Tools — Execute token swaps, check token prices, and analyze portfolios
  • Helius API Integration — Leverage Helius's powerful APIs for enhanced Solana data access

Installation

The server ships on npm as @modelcontextprotocol/inspector, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • getAssetsByOwner — Get NFTs owned by a specific address
  • getAsset — Get detailed information about a specific NFT by its ID
  • getAssetsByGroup — Get assets that belong to a specific group (like collection)
  • searchAssets — Search for assets using complex query parameters
  • getAssetProof — Get the merkle proof for a compressed NFT
  • getAssetsByCreator — Get assets created by a specific creator address
  • getAssetsByAuthority — Get assets by update authority address
  • getNftEditions — Get all editions of a master edition NFT
  • getMintlist — Get mintlist for a collection
  • getCurrentTPS — Get current transactions per second on Solana
  • getTokenHolders — Get holders of a specific token by mint address
  • getPriorityFeeEstimate — Get estimated priority fees for transactions

Credentials and setup notes

  • Node.js (v16 or higher recommended) - pnpm package manager (v9.10.0 or compatible) - Solana CLI (optional but recommended)

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Amoca Solana.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Amoca Solana's toolset — getAssetsByOwner, getAsset, getAssetsByGroup and 11 more — is a fair guide to whether it matches your workflow. It is maintained by manolaz; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Amoca Solana's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
getAssetsByOwnerGet NFTs owned by a specific address
getAssetGet detailed information about a specific NFT by its ID
getAssetsByGroupGet assets that belong to a specific group (like collection)
searchAssetsSearch for assets using complex query parameters
getAssetProofGet the merkle proof for a compressed NFT
getAssetsByCreatorGet assets created by a specific creator address
getAssetsByAuthorityGet assets by update authority address
getNftEditionsGet all editions of a master edition NFT
getMintlistGet mintlist for a collection
getCurrentTPSGet current transactions per second on Solana
getTokenHoldersGet holders of a specific token by mint address
getPriorityFeeEstimateGet estimated priority fees for transactions
getStakeAccountsGet stake accounts by their owner address
getComputeUnitsSimulate a transaction to get the total compute units consumed

How to install the Amoca Solana MCP server

{
  "mcpServers": {
    "amoca-solana": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/inspector"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js (v16 or higher recommended) - pnpm package manager (v9.10.0 or compatible) - Solana CLI (optional but recommended)

Example prompts to try

  • Use Amoca Solana to getAssetsByOwner.
  • Use Amoca Solana to getAsset.
  • Use Amoca Solana to getAssetsByGroup.

Frequently asked questions

Amoca Solana provides autonomous workflows and specialized prompts, allowing developers to analyze transactions, calculate storage costs, and access relevant documentation more efficiently.