Back to MCP Directory
Solscan
Model Context Protocol moderate risk

Solscan

An MCP server providing access to the Solscan Pro API, enabling users to query Solana blockchain data such as token information, account activities, and transaction details.

Connections & Capabilities

Connects To

GitHubDocker

Capabilities

read

Quickstart

Install

cargo install solscan-mcp

Config

{
  "mcpServers": {
    "solscan-mcp": {
      "command": "/Users/$username/.cargo/bin/solscan-mcp",
      "args": [],
      "env": {
        "SOLSCAN_API_KEY": "your_solscan_api_key"
      }
    }
  }
}

Exposed MCP Tools (3)

safe
get_token_info

Retrieves information about a specific token on the Solana blockchain.

Read-only operation; retrieves token data without modification.

safe
get_account_transactions

Fetches transaction history for a given Solana account.

Read-only operation; retrieves transaction data without modification.

safe
get_transaction_details

Provides detailed information about a specific Solana transaction.

Read-only operation; retrieves transaction details without modification.

Safety Assessment

This MCP is relatively safe for querying Solana blockchain data. The primary risk lies in the secure handling of the Solscan API key and the potential for information disclosure through poorly constructed queries. Avoid storing the API key in plaintext and monitor API usage to prevent rate limiting.

  • Primarily read-only access to blockchain data.
  • Relies on Solscan API for data retrieval, limiting direct interaction with the blockchain.
  • Requires an API key for authentication, providing a basic level of access control.
  • No direct write or delete operations on the blockchain.
  • Exposure of Solscan API key if not handled securely.
  • Potential for information disclosure if queries are not carefully constructed.
  • Dependence on the security of the Solscan API itself.
  • Improper use of the API could lead to rate limiting or denial of service.