Skip to main content
Glama

solana-mcp-server

npm version License: MIT Node Tools

완벽한 Solana 블록체인 MCP 서버. 지갑 관리, SPL 토큰 작업, DeFi, 스테이킹 및 네트워크 쿼리를 위한 25개의 도구를 제공합니다. @solana/web3.js@solana/spl-token을 기반으로 구축되었으며 Anchor를 지원합니다.

가장 활발하게 유지 관리되는 Solana MCP입니다. 경쟁 도구들이 생략하는 전체 SPL 토큰 수명 주기(생성, 발행, 소각, 동결, 동결 해제, 위임, 권한 관리)를 다룹니다.

설치

npx solana-mcp-server

또는 전역으로 설치:

npm install -g solana-mcp-server
solana-mcp-server

Related MCP server: SolanaBot

구성

MCP 구성(claude_desktop_config.json 또는 ~/.mcp.json)에 추가하세요:

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

도구 (25)

지갑 관리 (4)

도구

설명

주요 매개변수

create_wallet

새로운 Solana 키페어 생성 (메모리 전용)

--

import_wallet

base58로 인코딩된 개인 키에서 가져오기

privateKey

list_wallets

현재 세션의 모든 지갑 나열

--

get_balance

모든 주소의 SOL 잔액 조회

address

SPL 토큰 작업 (10)

도구

설명

주요 매개변수

create_spl_token

사용자 지정 소수점 자릿수로 새로운 SPL 토큰 생성

walletName, decimals

mint_tokens

모든 주소로 토큰 발행

walletName, tokenMint, amount

burn_tokens

계정에서 토큰 소각

walletName, tokenMint, amount

freeze_account

토큰 계정 동결

walletName, tokenMint, accountAddress

thaw_account

토큰 계정 동결 해제

walletName, tokenMint, accountAddress

set_token_authority

토큰 권한 변경 (발행, 동결, 소유자, 닫기)

walletName, tokenMint, authorityType

get_token_supply

토큰의 총 공급량 및 메타데이터

tokenMint

close_token_account

계정을 닫고 렌트 반환

walletName, tokenAccount

approve_delegate

토큰 전송을 위한 위임 승인

walletName, tokenAccount, delegate, amount

revoke_delegate

위임 승인 취소

walletName, tokenAccount

전송 (3)

도구

설명

주요 매개변수

transfer_sol

지갑 간 SOL 전송

from, to, amount

transfer_tokens

SPL 토큰 전송

from, to, tokenMint, amount

airdrop_sol

SOL 에어드랍 요청 (데브넷/테스트넷 전용)

address, amount

계정 쿼리 (4)

도구

설명

주요 매개변수

get_account_info

상세 계정 정보

address

get_transaction

서명별 거래 세부 정보

signature

create_token_account

연결된 토큰 계정 생성

walletName, tokenMint

get_token_accounts

지갑의 모든 토큰 계정 나열

address

토큰 데이터 (1)

도구

설명

주요 매개변수

get_token_balance

특정 계정의 SPL 토큰 잔액

address, tokenMint

네트워크 (3)

도구

설명

주요 매개변수

switch_network

메인넷, 데브넷, 테스트넷, 로컬호스트 간 전환

network

get_network_info

현재 네트워크 상태 및 정보

--

get_recent_blockhash

거래 생성을 위한 최근 블록 해시

--

왜 이 도구인가?

  • 완벽한 SPL 토큰 수명 주기. 생성, 발행, 소각, 동결, 동결 해제, 권한 설정, 위임, 닫기 등 모든 작업을 다루는 10개의 토큰 도구. 경쟁 도구들은 생성/전송에서 멈춥니다.

  • 운영 준비가 완료된 인프라. 지연 연결 초기화(시작 시간 초과 없음), 10초 네트워크 호출 타임아웃, 포괄적인 오류 처리 및 Smithery 배포 지원.

  • Anchor 통합. 원시 SPL 토큰 작업과 함께 Anchor 프로그램과 상호작용할 수 있도록 @coral-xyz/anchor 지원을 포함하여 구축되었습니다.

네트워크

네트워크

엔드포인트

mainnet

https://api.mainnet-beta.solana.com

devnet

https://api.devnet.solana.com

testnet

https://api.testnet.solana.com

localhost

http://127.0.0.1:8899

보안

  • 개인 키는 메모리에만 저장되며 디스크에 절대 저장되지 않음

  • 프로세스 종료 시 키 삭제

  • 모든 입력값은 Zod 스키마로 검증됨

환경 변수

변수

필수

설명

SOLANA_RPC_URL

아니오

Solana RPC 엔드포인트 (기본값: 메인넷)

개발

git clone https://github.com/ExpertVagabond/solana-mcp-server.git
cd solana-mcp-server
npm install
npm run build
npm start
npm test              # Basic functionality tests
npm run type-check    # TypeScript type checking
npm run lint          # ESLint
npm run quality       # Full quality check (lint + types + tests)

라이선스

MIT -- Purple Squirrel Media

Install Server
A
license - permissive license
B
quality
A
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables interaction with the Solana blockchain through Claude Desktop, allowing users to check SOL balances, transfer SOL between accounts, and request airdrops using the Model Context Protocol.
    8,867
    BSD 2-Clause "Simplified"
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to read chain data, execute transactions, swap tokens, and manage wallets on Solana through 38 tools across 7 modules. Supports write operations with a private key and includes built-in prompts for common workflows.
    38
    1
    MIT

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Appeared in Searches

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ExpertVagabond/solana-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server