🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

solsigs-mcp

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

solsigs-mcp

SolSigs MCP Server — AI Agent Gateway to Solana data via x402 micropayments

pipPyPI
Version
0.3.1
Weekly downloads
94
Maintainers
1

SolSigs MCP Server

AI Agent Gateway to Solana blockchain data via x402 micropayments.

What is this?

SolSigs MCP is a Model Context Protocol server that gives AI agents access to 22 Solana on-chain data tools — DEX prices, arbitrage scanning, wallet intel, token launches, AI market summaries, prediction markets, perps data, memecoin trenches, and more.

Each tool costs fractions of a cent USDC via the x402 protocol. No key required — start with 50 free calls automatically.

Quick Start

Free tier (no key needed):

pip install solsigs-mcp
solsigs-mcp
# → SolSigs MCP Server starting (stdio) [FREE-TIER MODE]...
#   50 free calls per session. Set SOLSIGS_MCP_KEY for paid mode.

Paid mode (unlimited calls):

pip install solsigs-mcp
export SOLSIGS_MCP_KEY="<your-base58-solana-private-key>"
solsigs-mcp

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "solsigs": {
      "command": "solsigs-mcp"
    }
  }
}

With a funded wallet:

{
  "mcpServers": {
    "solsigs": {
      "command": "solsigs-mcp",
      "env": {
        "SOLSIGS_MCP_KEY": "<your-base58-solana-private-key>"
      }
    }
  }
}

Cursor / VS Code

Add to .cursor/mcp.json (or .vscode/mcp.json):

{
  "mcpServers": {
    "solsigs": {
      "command": "solsigs-mcp"
    }
  }
}

SSE Mode (remote/multi-client)

export MCP_TRANSPORT=sse
export MCP_HOST=0.0.0.0
export SOLSIGS_MCP_KEY="<your-key>"   # optional
solsigs-mcp
# → SSE endpoint at http://0.0.0.0:3001/sse

Client config:

{
  "mcpServers": {
    "solsigs": {
      "url": "http://localhost:3001/sse"
    }
  }
}

Tools

ToolDescriptionPrice
get_dex_priceReal-time DEX prices + liquidity$0.002
scan_arbitrageCross-DEX arbitrage scanner$0.010
analyze_walletWallet risk analysis$0.005
detect_token_launchesNew token launch detection$0.003
get_market_summaryAI-powered market summary$0.008
get_prediction_marketPolymarket prediction data$0.003
get_batch_pricesMulti-token pricing + OHLCV$0.003
get_nft_intelNFT collection analytics$0.004
get_staking_ratesStaking APY comparison$0.002
get_whale_activityWhale wallet tracking$0.006
create_alertWebhook price/volume alerts$0.005
get_dev_activityProtocol dev activity$0.001
get_social_sentimentOn-chain social sentiment$0.004
rpc_relayPay-per-call Solana RPC$0.001
track_smart_moneySmart money copy-trading$0.008
get_trending_tokensTrending token feed$0.004
check_token_safetyToken safety audit$0.005
get_alpha_feedAlpha feed + signals$0.006
get_wallet_trustWallet trust score$0.003
get_perps_dataPerps + derivatives$0.005
get_trenchesPump.fun memecoin trenches scanner$0.003
ask_defi_questionAI verdict on any Solana/DeFi question$0.008
wallet_statusCheck wallet balance / free-tier countFree

Configuration

Env VarRequiredDefaultDescription
SOLSIGS_MCP_KEYNoBase58 Solana private key with USDC (omit for free tier)
SOLANA_RPC_URLNoMainnet publicSolana RPC endpoint
SOLSIGS_BASE_URLNohttps://solsigs.comSolSigs API base
MCP_TRANSPORTNostdiostdio or sse
MCP_HOSTNo127.0.0.1SSE bind address
MCP_PORTNo3001SSE port

License

MIT

Keywords

ai

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts