An MCP server that detects potential honeypot tokens on Ethereum, BSC, and Base using the honeypot.is API.
npm install
npm run buildAdd to your MCP client config:
{
"mcpServers": {
"dex-honeypot-mcp": {
"command": "node",
"args": ["/path/to/dex-honeypot-mcp/dist/index.js"],
"env": {
"HONEYPOT_API_KEY": "your-api-key-or-omit-for-free-tier"
}
}
}
}Note: The API key is optional. Without it, you may be subject to rate limits. See honeypot.is docs for details.
Check if a token is a honeypot.
Parameters:
address(required): Token contract address (0x...)chain(optional):ethereum,bsc, orbase(auto-detects if omitted)
Example:
Check if 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 is a honeypot on ethereum
Output:
# Honeypot Analysis for USDC
- **Address**: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
- **Chain**: Ethereum
- **Is Honeypot**: false
- **Risk Level**: low
- **Buy Tax**: 0%
- **Sell Tax**: 0%
- **Transfer Tax**: 0%
- **Contract Open Source**: trueMIT