A Claude Code plugin providing AI-assisted Web3 security analysis powered by GoPlus Security.
| Module | Skills | Description |
|---|---|---|
| Building Secure Tokens | token-risk-scanner, safe-token-factory |
Honeypot detection, token security analysis, secure token creation |
| Building Secure Transactions | malicious-address-detection, approval-security-detection, phishing-site-detection, transaction-simulation |
Address screening, approval auditing, phishing detection, tx preview |
| Building Secure AI Agent | (Phase 2) | Prompt injection, data disclosure, resource security |
npm install -g goplus-mcp- Visit GoPlus Security API
- Register and obtain your API Key and Secret
For Claude Desktop, edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"goplus": {
"command": "goplus-mcp",
"env": {
"GOPLUS_API_KEY": "your-api-key",
"GOPLUS_API_SECRET": "your-api-secret"
}
}
}
}For Claude Code, create .mcp.json in your project:
{
"mcpServers": {
"goplus": {
"command": "goplus-mcp",
"env": {
"GOPLUS_API_KEY": "${GOPLUS_API_KEY}",
"GOPLUS_API_SECRET": "${GOPLUS_API_SECRET}"
}
}
}
}/plugin marketplace add GoPlusSecurity/goplus-security-skillsOr install specific modules:
/plugin install GoPlusSecurity/goplus-security-skills/plugins/building-secure-tokens
/plugin install GoPlusSecurity/goplus-security-skills/plugins/building-secure-transactionsIs this token safe? 0xdAC17F958D2ee523a2206206994597C13D831ec7 on Ethereum
Check if this address is malicious: 0x123... on BSC
Audit my wallet approvals: 0xMyWallet... on Ethereum
Is https://uniswapp.com safe to connect?
| Chain | ID | Chain | ID |
|---|---|---|---|
| Ethereum | 1 | BSC | 56 |
| Polygon | 137 | Arbitrum | 42161 |
| Optimism | 10 | Base | 8453 |
| Avalanche | 43114 | Fantom | 250 |
| Cronos | 25 | zkSync Era | 324 |
| Linea | 59144 | Scroll | 534352 |
- Solana
- Sui
- Tron
| MCP Tool | Skill | Function |
|---|---|---|
goplus_token_security |
token-risk-scanner | EVM token analysis |
goplus_solana_token_security |
token-risk-scanner | Solana token analysis |
goplus_sui_token_security |
token-risk-scanner | Sui token analysis |
goplus_malicious_address |
malicious-address-detection | Address threat check |
goplus_approval_security |
approval-security-detection | Approval risk audit |
goplus_phishing_site |
phishing-site-detection | Phishing URL check |
goplus_nft_security |
(extensible) | NFT contract analysis |
Apache-2.0