100pro-token-risk
Read-only risk tools: token screen, contract source, wallet. $0.10 USDC on Base.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"100pro-token-risk": {
"url": "https://x402.rendraputra.dev/mcp"
}
}
}Remote endpoints
https://x402.rendraputra.dev/mcpstreamable-httpWhat it can do
Tool inventory
Tools (3)
🟢token_risk_screen(token, chain)
Pre-trade risk screen for an EVM token contract or a Solana SPL mint (Base, Ethereum, BSC, Polygon, Arbitrum, Solana). Returns a markdown report: honeypot/tax/owner flags, LP-lock state, mint and freeze authority, transfer fee/hook, holder concentration, liquidity depth, wash-trade flags, and a final **Verdict** line. Up to 5 comma-separated tokens per call. $0.1 USDC for a single token contract / SPL mint, $0.25 for a 2-5 address batch, on Base (x402 v2, no account, no API key). An unpaid call answers HTTP 402 with the payment challenge; sign it and retry with the payment in the call `_meta`. Read-only: it never signs, transfers, or approves anything on the caller's behalf.
Input Schema
{
"type": "object",
"properties": {
"token": {
"type": "string",
"minLength": 20,
"maxLength": 300,
"examples": [
"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"So11111111111111111111111111111111111111112"
],
"description": "EVM address (0x + 40 hex chars) or Solana SPL mint (base58). Batch up to 5 addresses, comma-separated. Required."
},
"chain": {
"type": "string",
"enum": [
"solana",
"base",
"ethereum",
"bsc",
"polygon",
"arbitrum"
],
"default": null,
"description": "Optional. Omit it and the chain is inferred from the address shape (0x… → Base by default, base58 → Solana). Set it explicitly when the same address shape is ambiguous."
}
},
"required": [
"token"
],
"additionalProperties": false
}Output Schema
{
"type": "object",
"properties": {
"kind": {
"type": "string",
"description": "Which tool produced this result"
},
"chain": {
"type": "string",
"description": "Chain used, or `auto` when inferred"
},
"results": {
"type": "array",
"description": "One entry per requested address, in request order",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"token": {
"type": "string",
"description": "The address as requested"
},
"verdict": {
"type": "string",
"description": "The Verdict line exactly as it appears in the markdown report"
},
"level": {
"type": "string",
"description": "Leading level word of the verdict, uppercased; empty when the report produced no verdict line"
}
},
"required": [
"token",
"verdict",
"level"
]
}
}
},
"required": [
"kind",
"chain",
"results"
],
"additionalProperties": false
}🟢contract_source_check(address, chain)
Contract-level due diligence for an EVM contract address: whether the source is verified and through which route (sourcify / verifier-alliance / eth-bytecode-db), fully vs partially verified, whether the deployed bytecode still matches the verified source, proxy pattern and implementation address, deployer address and creation tx, contract age, and a capability scan of the verified source (and of the proxy implementation) for mint, pause, blacklist, selfdestruct and delegatecall. Returns markdown ending in a **Verdict** line. Up to 5 comma-separated addresses per call. $0.1 USDC for a single contract address, $0.25 for a 2-5 address batch, on Base (x402 v2, no account, no API key). An unpaid call answers HTTP 402 with the payment challenge; sign it and retry with the payment in the call `_meta`. Read-only: it never signs, transfers, or approves anything on the caller's behalf.
Input Schema
{
"type": "object",
"properties": {
"address": {
"type": "string",
"minLength": 20,
"maxLength": 300,
"examples": [
"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
],
"description": "EVM address (0x + 40 hex chars). Batch up to 5 addresses, comma-separated. Required."
},
"chain": {
"type": "string",
"enum": [
"base",
"ethereum",
"bsc",
"polygon",
"arbitrum"
],
"default": null,
"description": "Optional. Defaults to Base when omitted."
}
},
"required": [
"address"
],
"additionalProperties": false
}Output Schema
{
"type": "object",
"properties": {
"kind": {
"type": "string",
"description": "Which tool produced this result"
},
"chain": {
"type": "string",
"description": "Chain used, or `auto` when inferred"
},
"results": {
"type": "array",
"description": "One entry per requested address, in request order",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"address": {
"type": "string",
"description": "The address as requested"
},
"verdict": {
"type": "string",
"description": "The Verdict line exactly as it appears in the markdown report"
},
"level": {
"type": "string",
"description": "Leading level word of the verdict, uppercased; empty when the report produced no verdict line"
}
},
"required": [
"address",
"verdict",
"level"
]
}
}
},
"required": [
"kind",
"chain",
"results"
],
"additionalProperties": false
}🟢wallet_risk_screen(address, chain)
Wallet-level due diligence for an EVM address: externally-owned account vs contract (and proxy type), age from its first transaction, activity counters, native balance, funding source, how many contracts it has deployed, Blockscout scam/reputation/tags, and GoPlus address-security flags (sanctioned, phishing, mixer, money laundering, honeypot-related, malicious contracts created). Returns markdown with a **Verdict** and a flag list. Up to 5 comma-separated addresses per call. $0.1 USDC for a single wallet address, $0.25 for a 2-5 address batch, on Base (x402 v2, no account, no API key). An unpaid call answers HTTP 402 with the payment challenge; sign it and retry with the payment in the call `_meta`. Read-only: it never signs, transfers, or approves anything on the caller's behalf.
Input Schema
{
"type": "object",
"properties": {
"address": {
"type": "string",
"minLength": 20,
"maxLength": 300,
"examples": [
"0x6aAFF8af0ae8017725312C388bA3745dfE91185B"
],
"description": "EVM address (0x + 40 hex chars). Batch up to 5 addresses, comma-separated. Required."
},
"chain": {
"type": "string",
"enum": [
"base",
"ethereum",
"bsc",
"polygon",
"arbitrum"
],
"default": null,
"description": "Optional. Defaults to Base when omitted."
}
},
"required": [
"address"
],
"additionalProperties": false
}Output Schema
{
"type": "object",
"properties": {
"kind": {
"type": "string",
"description": "Which tool produced this result"
},
"chain": {
"type": "string",
"description": "Chain used, or `auto` when inferred"
},
"results": {
"type": "array",
"description": "One entry per requested address, in request order",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"address": {
"type": "string",
"description": "The address as requested"
},
"verdict": {
"type": "string",
"description": "The Verdict line exactly as it appears in the markdown report"
},
"level": {
"type": "string",
"description": "Leading level word of the verdict, uppercased; empty when the report produced no verdict line"
}
},
"required": [
"address",
"verdict",
"level"
]
}
}
},
"required": [
"kind",
"chain",
"results"
],
"additionalProperties": false
}Community
Evidence