Agentipy MCP Server for Claude Desktop
Claude デスクトップ用 Agentipy MCP サーバー
Claude AIにオンチェーンツールを提供するModel Context Protocol(MCP)サーバー。標準化されたインターフェースを介してSolanaブロックチェーンとやり取りできます。この実装はAgentipyを使用し、AIエージェントがブロックチェーン操作をシームレスに実行できるようにします。
概要
この MCP サーバーは、次のツールを提供することで Claude の機能を拡張します。
Solanaブロックチェーンとやりとりする
トランザクションを実行する
アカウント情報の照会
Solanaウォレットを管理する
価格予測を取得する
トークンの取引とステーク
新しいトークンを展開する
CoinGeckoからトークン情報を取得する
deBridgeを使用してクロスチェーンブリッジ取引を実行する
Pyth Networkからリアルタイムの価格データを取得する
CoinGeckoから包括的なトークン情報にアクセス
トレンドのトークンとプールを監視する
上昇銘柄と市場動向を追跡
詳細なトークン価格データと分析を入手
サーバーは、AI エージェントのブロックチェーン相互作用を標準化するために、モデル コンテキスト プロトコル仕様を実装します。
Related MCP server: Solana Agent Kit MCP Server
前提条件
Python 3.8以上
クロードデスクトップがインストール済み
秘密鍵付きSolanaウォレット
Solana RPC URL (メインネット、テストネット、または開発ネット)
OpenAI APIキー(オプション)
Allora APIキー(オプション)
CoinGecko Pro APIキー(オプション)
インストール
オプション 1: クイックインストール (推奨)
# Clone the repository
git clone https://github.com/niceberginc/agentipy-mcp
cd agentipy-mcp
# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows, use `.venv\Scripts\activate`
# Install dependencies
pip install -r requirements.txtオプション2: 手動セットアップ
仮想環境を作成します。
python -m venv .venv
source .venv/bin/activate # On Windows, use `.venv\Scripts\activate`必要なパッケージをインストールします。
pip install agentipy>=2.0.8 cryptography>=3.4.7 python-dotenv>=0.17.1 web3>=7.8.0 allora_sdk>=0.2.0 mcp>=1.4.0構成
環境設定
資格情報を使用して.envファイルを作成します。
# Solana Configuration
SOLANA_PRIVATE_KEY=your_private_key_here
RPC_URL=your_solana_rpc_url_here
# Optional API Keys
OPENAI_API_KEY=your_openai_api_key
ALLORA_API_KEY=your_allora_api_key
COINGECKO_PRO_API_KEY=your_coingecko_api_keyClaude Desktopとの統合
この MCP サーバーを Claude Desktop に追加するには、次の手順に従います。
Claudeデスクトップ構成ファイルを見つける
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude\claude_desktop_config.json
構成を追加する構成ファイルを作成または編集し、次の JSON を追加します。
注:
commandフィールドには、Unix/Macシステムの場合はrun_mcp.sh、Windowsシステムの場合はrun_mcp.batを使用してください。システム上のスクリプトファイルへの正しい絶対パスを使用してください。{ "mcpServers": { "agentipy": { "command": "/path/to/your/run_mcp.sh", # Replace with .bat for Windows "env": { "RPC_URL": "your_solana_rpc_url_here", "SOLANA_PRIVATE_KEY": "your_private_key_here", "OPENAI_API_KEY": "your_openai_api_key", "ALLORA_API_KEY": "your_allora_api_key", "COINGECKO_PRO_API_KEY": "your_coingecko_api_key" }, "disabled": false, "autoApprove": ["GET_BALANCE", "GET_PRICE_PREDICTION"] } } }**Claude Desktop を再起動します。**これらの変更を行った後、設定を有効にするために Claude Desktop を再起動します。
プロジェクト構造
agentipy-mcp/
├── server.py # Main entry point
├── run_mcp.sh # Run script for Unix/Mac
├── run_mcp.bat # Run script for Windows
├── requirements.txt # Dependencies
└── .env # Environment variables利用可能なツール
MCP サーバーは、次のブロックチェーン ツールを提供します。
ネイティブSolanaアクション
GET_BALANCE- ウォレットの残高を確認するTRANSFER- ウォレット間でトークンを転送するDEPLOY_TOKEN- Solanaに新しいトークンをデプロイする
アローラアクション
GET_PRICE_PREDICTION- 価格予測を取得するGET_ALL_TOPICS- 利用可能なトピックを取得する
木星の行動
STAKE_WITH_JUP- Jupiterを使用してトークンをステークするTRADE_WITH_JUP- Jupiterを使用してトークンを取引する
デブリッジアクション
CREATE_DEBRIDGE_TRANSACTION- deBridge Liquidity Network API を使用してクロスチェーンブリッジトランザクションを作成するEXECUTE_DEBRIDGE_TRANSACTION- deBridge Liquidity Network APIを使用してクロスチェーンブリッジトランザクションを実行するCHECK_TRANSACTION_STATUS- deBridge Liquidity Network API を使用してクロスチェーンブリッジ取引のステータスを確認します
Pythonアクション
PYTH_GET_PRICE- Pythからコインの価格を取得する
CoinGeckoアクション
COINGECKO_GET_TOKEN_INFO- CoinGeckoからトークン情報を取得するCOINGECKO_GET_COIN_PRICE_VS- Coingeckoから特定の通貨のコインの価格を取得しますCOINGECKO_GET_TOP_GAINERS- Coingecko からトップゲイン銘柄を取得COINGECTO_GET_TRENDING_POOLS- Coingeckoからトレンドプールを取得しますCOINGECKO_GET_TRENDING_TOKENS- Coingeckoからトレンドのトークンを取得するCOINGECKO_GET_TOKEN_PRICE_DATA- Coingeckoからトークン価格データを取得するCOINGECKO_GET_LATEST_POOLS- Coingecko から最新のプールを取得します
セキュリティに関する考慮事項
秘密鍵を安全に保管し、決して共有しないでください
機密情報には環境変数を使用する
AIエージェントの運用には専用のウォレットの使用を検討してください
AIエージェントの活動を定期的に監視および監査する
メインネットの前に開発ネット/テストネットでテスト運用
トラブルシューティング
問題が発生した場合:
Solanaの秘密鍵が正しいことを確認する
RPC URL にアクセスできるかどうかを確認してください
すべての依存関係が正しくインストールされていることを確認する
.envファイルに正しい資格情報が含まれていることを確認してくださいClaude Desktop のログでエラーメッセージを確認してください
依存関係
主な依存関係は次のとおりです。
agentipy - Solanaブロックチェーンインタラクション
python-dotenv - 環境管理
mcp - モデルコンテキストプロトコル
貢献
貢献を歓迎します!お気軽にプルリクエストを送信してください。
リポジトリをフォークする
機能ブランチを作成します(
git checkout -b feature/amazing-feature)変更をコミットします (
git commit -m 'Add some amazing feature')ブランチにプッシュする (
git push origin feature/amazing-feature)プルリクエストを開く
ライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています。
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Solana token risk-scoring MCP server for AI trading agents with insider wallet cluster detection.
Solana MCP for wallets, trades, markets, PnL, transfers, onchain data, signable swaps and API tools.
Production-grade MCP gateway delivering 8 real-time AI tools with instant x402 micropayments settled in USDC on Base Mainnet or SPL-USDC on Solana. Features Basescan contract auditing, wallet analytics, headless browser scraping, and pre-scraped oracle data feeds.
Production-grade MCP gateway delivering 8 real-time AI tools with instant x402 micropayments settled in USDC on Base Mainnet or SPL-USDC on Solana. Features Basescan contract auditing, wallet analytics, headless browser scraping, and pre-scraped oracle data feeds.
Related MCP Servers
- AlicenseCqualityCmaintenanceA Model Context Protocol server that provides Claude with comprehensive access to Solana blockchain data via the Helius API, enabling operations like checking wallet balances, retrieving blockchain information, and interacting with tokens and NFTs.381014MIT
- AlicenseNot gradedqualityFmaintenanceA Model Context Protocol server that enables Claude AI to interact with the Solana blockchain through a standardized interface, providing tools for transactions, account queries, and wallet management.29163Apache 2.0
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables AI models to interact with the Solana blockchain, providing RPC methods, wallet management, DeFi trading capabilities, and Helius API integration for enhanced Solana development.5MIT
- FlicenseNot gradedqualityFmaintenanceA Model Context Protocol server that provides onchain tools for Claude AI, allowing it to interact with the Solana blockchain through a standardized interface for operations like managing assets, executing token operations, and retrieving network information.7
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/niceberginc/agentipy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server