Solana MCP Server

# Solana MCP Configuration # Your Solana private key (Keep this secure and never share!) # Format: base58 encoded private key SOLANA_PRIVATE_KEY=your_private_key_here # RPC URL for Solana (mainnet, testnet, or devnet) # Examples: # - https://api.mainnet-beta.solana.com (public RPC, limited) # - https://your-helius-rpc-endpoint.com/?api-key=your-api-key (recommended) # - https://your-alchemy-rpc-endpoint.com/?api-key=your-api-key RPC_URL=your_rpc_url_here # Optional: OpenAI API key (if using OpenAI integration) OPENAI_API_KEY=your_openai_api_key_here # Network selection (mainnet-beta, testnet, devnet) SOLANA_NETWORK=mainnet-beta # Optional: Maximum transaction amount in SOL (for safety) MAX_TRANSACTION_AMOUNT=1.0 # Optional: Log level (debug, info, warn, error) LOG_LEVEL=info