goplus-mcp

GoPlusSecurity/goplus-mcp

3.4

If you are the rightful owner of goplus-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

GoPlus MCP Server is a security layer for Web3, providing blockchain security analysis through an MCP server for LLM Clients.

GoPlus MCP Server

GoPlus Security is the leading Web3 security layer, providing comprehensive protection for multiple blockchain ecosystems. This project provides a MCP server for LLM Client to connect to the GoPlus Security Intelligence. Through this server, LLM Client can directly access and analyze blockchain security data, helping users with token security analysis, address risk assessment, and comprehensive Web3 security checks.

Prerequisites

API Credentials

To use this MCP server, you need GoPlus API credentials. You can obtain your API key and secret by contacting GoPlus through their official website: https://gopluslabs.io/security-api

Installation

Global Installation

npm install -g goplus-mcp

Configuration in Claude

To use this MCP server in the Claude desktop application, add the following to Claude's configuration file:

{
  "mcpServers": {
    "goplus": {
      "command": "npx",
      "args": [
        "-y",
        "goplus-mcp@latest",
        "--key",
        "YOUR_GOPLUS_API_KEY",
        "--secret",
        "YOUR_GOPLUS_API_SECRET"
      ]
    }
  }
}

Command Line Options

OptionDescriptionDefault Value
-k, --key <key>GoPlus API Key-
-s, --secret <secret>GoPlus API Secret-

Supported Blockchains

EVM-Compatible Chains

Chain NameChain IDNetwork Type
Ethereum1Mainnet
BSC56Mainnet
Arbitrum42161Layer 2
Polygon137Mainnet
opBNB204Layer 2
zkSync Era324Layer 2
Linea Mainnet59144Layer 2
Base8453Layer 2
Mantle5000Layer 2
Unichain130Layer 2
Scroll534352Layer 2
Optimism10Layer 2
Avalanche43114Mainnet
Fantom250Mainnet
Cronos25Mainnet
HECO128Mainnet
Gnosis100Mainnet
KCC321Mainnet
FON201022Mainnet
ZKFair42766Layer 2
Morph2818Layer 2
Soneium1868Layer 2
Story1514Layer 1
Sonic146Layer 1
Abstract2741Layer 2
Hashkey177Layer 1
Berachain80094Layer 1
Monad10143Layer 1
World Chain480Layer 2
Blast81457Layer 2
Gravity1625Layer 1
Mint185Layer 2
Zircuit48899Layer 2
X Layer Mainnet196Layer 2
zkLink Nova810180Layer 2
Bitlayer Mainnet200901Layer 2
Merlin4200Layer 2
Manta Pacific169Layer 2

Non-EVM Chains

Chain NameChain IDNative Support
Solanasolana✅ Full Support
Trontron✅ Full Support
Sui-✅ Full Support

Supported GoPlus Tools

This MCP server provides the following GoPlus security analysis tools:

Core Security Analysis Tools

  • token_security - Analyze token security for EVM-compatible blockchains with comprehensive risk assessment including honeypot detection, liquidity analysis, and holder concentration

  • malicious_address - Detect malicious addresses and potential scams across multiple blockchains with real-time threat intelligence

  • phishing_website - Detect phishing websites and malicious URLs in the crypto space using GoPlus's extensive database

  • nft_security - Analyze NFT contract security and detect potential risks with optional specific token analysis

  • approval_security - Analyze token approvals and detect potential security risks for user addresses

Multi-Chain Support Tools

  • solana_token_security - Analyze Solana token security including mint authority, freeze capability, and metadata mutability

  • sui_token_security - Analyze Sui token security including contract upgradeability and capability ownership

Tool Parameters

EVM-Compatible Chain Tools

Parameters for token_security, malicious_address, nft_security, approval_security:

  • chain_id: Blockchain ID (see supported chains table above)
  • contract_addresses or addresses: Contract/wallet address(es) to analyze (comma-separated for multiple)
  • token_id (NFT only): Optional token ID for specific NFT analysis

Cross-Chain Tools

Parameters for phishing_website:

  • url: Website URL to check for phishing and security risks

Parameters for solana_token_security, sui_token_security:

  • contract_addresses: Token contract address(es) to analyze (comma-separated for multiple)

Usage Examples

Command Line

# Start the server
goplus-mcp --key YOUR_API_KEY --secret YOUR_API_SECRET

In Claude

Once configured, you can ask Claude to:

  • "Analyze the security of this token contract on Ethereum: 0x..."
  • "Check if this address is malicious: 0x..."
  • "Is this website a phishing site: https://..."
  • "Analyze this NFT contract security on Polygon"
  • "Check my token approvals for potential risks"

Development

  1. Clone the repository:

    git clone https://github.com/GoPlusSecurity/goplus-mcp.git
    cd goplus-mcp
    
  2. Install dependencies:

    npm install
    
  3. Build the project:

    npm run build
    
  4. Run the server:

    npm start -- --key YOUR_API_KEY --secret YOUR_API_SECRET
    

API Coverage

This MCP server covers the following GoPlus API endpoints:

  • Token Security Analysis (EVM chains)
  • Address Security Check
  • Phishing Site Detection
  • NFT Security Analysis (EVM chains)
  • Approval Security Analysis (EVM chains)
  • Solana Token Security Analysis
  • Sui Token Security Analysis

License

MIT