We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/diaorui/jupiter-perps-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1.02 kB
# Solana Wallet Configuration
# Your wallet private key (base58 encoded)
# WARNING: Never commit the actual .env file with your real private key
WALLET_PRIVATE_KEY=your_private_key_here
# Solana RPC URL
# Options:
# - Mainnet: https://api.mainnet-beta.solana.com
# - Devnet: https://api.devnet.solana.com
# - Custom RPC (recommended for production): https://your-rpc-provider.com
RPC_URL=https://api.mainnet-beta.solana.com
# Trading Configuration
# Maximum slippage tolerance in basis points (100 bps = 1%)
# Default: 200 (2%)
MAX_SLIPPAGE_BPS=200
# Transaction Priority Fee (Optional)
# Priority fee in microLamports per compute unit
# Default: 100000 (balanced - ~0.00002 SOL per typical transaction)
# Only change if you need faster confirmation or lower fees
# Low: 1-10k (slow) | Medium: 50k-200k | High: 500k-1M+ (fast)
# PRIORITY_FEE_MICRO_LAMPORTS=100000
# Remote MCP Server Configuration (Optional)
# Only needed if running the HTTP server (npm run start:remote)
# Port for the HTTP server
MCP_PORT=3000