ChainAware Behavioural Prediction MCP Server
🧠 ChainAware 행동 예측 MCP 서버
MCP 서버 이름: ChainAware 행동 예측 MCP
카테고리: Web3 / 보안 / DeFi 분석
상태: 공개 도구 – 비공개 백엔드
액세스: 요청 시 (API 키 필요)
서버 URL: [https://prediction.mcp.chainaware.ai/sse]
저장소: [https://github.com/ChainAware/behavioral-prediction-mcp]
웹사이트: [https://chainaware.ai/]
트위터: [https://x.com/ChainAware/]
mcp-name: io.github.ChainAware/chainaware-behavioral-prediction-mcp
📖 설명
행동 예측 MCP 서버는 지갑 행동 예측, 사기 탐지 및 러그 풀 예측을 분석하기 위한 AI 기반 도구를 제공합니다.
개발자와 플랫폼은 MCP 프로토콜을 통해 이러한 도구를 통합하여 DeFi 사용자를 보호하고, 유동성 위험을 모니터링하며, 지갑이나 계약의 신뢰도를 평가할 수 있습니다.
모든 도구는 Model Context Protocol (MCP)을 따르며 MCP 호환 클라이언트를 통해 사용할 수 있습니다.
Related MCP server: rug-check-mcp
⚙️ 사용 가능한 도구
1. 예측 사기 탐지 도구
ID: predictive_fraud
설명: 이 AI 기반 알고리즘은 특정 지갑 주소에서 사기 행위가 발생하기 전에 발생 가능성을 예측(약 98% 정확도)하고 AML(자금 세탁 방지) 검사를 수행합니다. 사용자가 블록체인 주소에 대한 위험 평가나 조기 경보를 원할 때 사용하세요.
➡️ 예시 사용 사례:
• Is it safe to intercant with vitalik.eth ?
• What is the fraudulent status of this address ?
• Is my new wallet at risk of being used for fraud? 입력값:
이름 | 유형 | 필수 여부 | 설명 |
| string | ✅ | 인증을 위한 API 키 |
| string | ✅ | 블록체인 네트워크 ( |
| string | ✅ | 평가할 지갑 주소 |
출력값 (JSON):
{
"message": "string", // e.g. “Success” or error description
"walletAddress": "string", // blockchain wallet address that was analyzed
"chain": "string", // blockchain network identifier (e.g. ETH, BNB,POLYGON,TON,BASE, TRON, HAQQ)
"status": "string", // classification result (e.g. “Fraud” | “Not Fraud” | “New Address”)
"probabilityFraud": "0.00–1.00", // decimal fraud probability score (string to preserve precision)
"token": "string | null", // optional token associated with the check (may be null)
"lastChecked": "ISO-8601 timestamp", // last time the wallet risk analysis was executed
"forensic_details": {
"cybercrime": "string", // indicator score for cybercrime activity
"money_laundering": "string", // indicator score for money laundering activity
"number_of_malicious_contracts_created": "string", // number of malicious contracts deployed by this wallet
"gas_abuse": "string", // gas abuse indicator
"financial_crime": "string", // financial crime indicator
"darkweb_transactions": "string", // interaction with darkweb-linked wallets
"reinit": "string", // reinitialization exploit indicator
"phishing_activities": "string", // phishing activity indicator
"fake_kyc": "string", // fake KYC related activity
"blacklist_doubt": "string", // suspected blacklist association
"fake_standard_interface": "string", // fake ERC interface indicator
"data_source": "string", // source of forensic intelligence (may be empty)
"stealing_attack": "string", // stealing attack indicator
"blackmail_activities": "string", // blackmail activity indicator
"sanctioned": "string", // sanction exposure indicator
"malicious_mining_activities": "string", // malicious mining indicator
"mixer": "string", // interaction with mixing services
"fake_token": "string", // fake token creation or usage indicator
"honeypot_related_address": "string" // interaction with honeypot-related addresses
},
"checked_times": 0, // integer — number of times this wallet has been analyzed
"createdAt": "ISO-8601 timestamp", // record creation timestamp
"updatedAt": "ISO-8601 timestamp", // record last update timestamp
"sanctionData": [
{
"category": "string | null", // sanction category (may be null)
"name": "string | null", // sanction list name
"description": "string | null", // sanction description
"url": "string | null", // source URL for sanction information
"isSanctioned": false, // boolean — whether the wallet is officially sanctioned
"createdAt": "ISO-8601 timestamp", // sanction record creation timestamp
"updatedAt": "ISO-8601 timestamp" // sanction record last update timestamp
}
]
}오류 사례:
• `403 Unauthorized` → invalid `apiKey`
• `400 Bad Request` → malformed `network` or `walletAddress`
• `500 Internal Server Error` → temporary downstream failure 2. 예측 행동 분석 도구
ID: predictive_behaviour
설명: 이 AI 기반 엔진은 지갑 주소의 의도를 예측하거나 다음에 무엇을 할 가능성이 높은지 투영하며, 과거 온체인 기록을 프로파일링하고 개인화된 행동을 추천합니다.
Use this when you need:
• Next‑best‑action predictions and intentions(“Will this address deposit, trade, or stake?”)
• A risk‑tolerance and experience profile
• Category segmentation (e.g. NFT, DeFi, Bridge usage)
• Custom recommendations based on historical patterns➡️ 예시 사용 사례:
• “What will this address do next?”
• “Is the user high‑risk or experienced?”
• “Recommend the best DeFi strategies for 0x1234... on ETH network.”입력값:
이름 | 유형 | 필수 여부 | 설명 |
| string | ✅ | 인증을 위한 API 키 |
| string | ✅ | 블록체인 네트워크 ( |
| string | ✅ | 평가할 지갑 주소 |
출력값 (JSON):
{
"message": "string", // e.g. “Success” or error description
"walletAddress": "string", // blockchain wallet address analyzed
"status": "string", // fraud classification result (e.g. “Fraud” | “Not Fraud” | “New Address”)
"probabilityFraud": "0.00–1.00", // decimal probability score indicating fraud risk
"token": "string | null", // optional token context for the analysis
"chain": "string", // blockchain network identifier (e.g. ETH, BNB,BASE,HAQQ,SOLANA)
"lastChecked": "ISO-8601 timestamp", // last time the wallet was analyzed
"forensic_details": {
"cybercrime": "string", // indicator of cybercrime association
"money_laundering": "string", // money laundering activity indicator
"number_of_malicious_contracts_created": "string", // malicious contracts deployed by wallet
"gas_abuse": "string", // abnormal gas usage indicator
"financial_crime": "string", // financial crime activity indicator
"darkweb_transactions": "string", // interaction with darkweb-linked wallets
"reinit": "string", // contract reinitialization exploit indicator
"phishing_activities": "string", // phishing activity indicator
"fake_kyc": "string", // fake KYC interaction indicator
"blacklist_doubt": "string", // suspected blacklist association
"fake_standard_interface": "string", // fake token interface indicator
"data_source": "string", // source of forensic intelligence
"stealing_attack": "string", // stealing attack indicator
"blackmail_activities": "string", // blackmail activity indicator
"sanctioned": "string", // sanction exposure indicator
"malicious_mining_activities": "string", // malicious mining activity indicator
"mixer": "string", // interaction with mixing services
"fake_token": "string", // fake token creation/use indicator
"honeypot_related_address": "string" // honeypot contract interaction indicator
},
"categories": [
{
"Category": "string", // wallet interaction category (e.g. DeFi, NFT, Bridge)
"Count": 0 // number of transactions/interactions in this category
}
],
"riskProfile": [
{
"Category": "Risk_Profile", // willingnes to take risk object
"Balance_age": 0.0 // 1-10 willingnes to take risk value
}
],
"segmentInfo": "string (JSON encoded)", // serialized JSON containing protocol engagement flags (e.g "{\"Maker\":0,\"Aave_borrow\":0,\"Aave_lend\":1,\"Lido\":0,\"Uniswap\":1,\"Compound_lend\":0,\"Compound_borrow\":0}")
"experience": {
"Type": "string", // descriptor label (e.g. “Experience”)
"Value": 0 // numeric experience score level
},
"intention": {
"Type": "string", // descriptor label (e.g. “Intentions”)
"Value": {
"Prob_Lend": "Low | Medium | High",
"Prob_Trade": "Low | Medium | High",
"Prob_Game": "Low | Medium | High",
"Prob_NFT": "Low | Medium | High",
"Prob_Stake_ETH": "Low | Medium | High",
"Prob_Borrow": "Low | Medium | High",
"Prob_Gamble": "Low | Medium | High",
"Prob_Stake": "Low | Medium | High",
"Prob_Yield_Farm": "Low | Medium | High",
"Prob_Leveraged_Stake": "Low | Medium | High",
"Prob_Leveraged_Stake_ETH": "Low | Medium | High",
"Prob_Leveraged_Lend": "Low | Medium | High",
"Prob_Leverage_Long_ETH": "Low | Medium | High",
"Prob_Leverage_Long": "Low | Medium | High"
}
},
"protocols": [
{
"Protocol": "string", // protocol name (e.g. Uniswap, Curve, MakerDAO)
"Count": 0 // number of interactions with this protocol
}
],
"userDetails": {
"wallet_age_days": 0, // age of wallet in days
"total_balance_usd": 0.0, // current wallet balance in USD
"transaction_count": 0, // total number of transactions executed
"wallet_rank": 0 // ranking of wallet in the scoring system
},
"riskCapability": 0, // numeric risk capability score
"recommendation": {
"Type": "string", // descriptor label (e.g. “Recommendation”)
"Value": [
"string" // recommended strategies or actions
]
},
"checked_times": 0, // number of times the wallet analysis was executed
"createdAt": "ISO-8601 timestamp", // record creation timestamp
"updatedAt": "ISO-8601 timestamp", // record last update timestamp
"sanctionData": [
{
"category": "string | null", // sanction category
"name": "string | null", // sanction list name
"description": "string | null", // sanction description
"url": "string | null", // reference source URL
"isSanctioned": false, // whether the wallet is officially sanctioned
"createdAt": "ISO-8601 timestamp",
"updatedAt": "ISO-8601 timestamp"
}
]
}
오류 사례:
• `403 Unauthorized` → invalid `apiKey`
• `400 Bad Request` → malformed `network` or `walletAddress`
• `500 Internal Server Error` → temporary downstream failure 3. 예측 러그 풀 탐지 도구
ID: predictive_rug_pull
설명: 이 AI 기반 엔진은 어떤 유동성 풀이나 계약이 향후 "러그 풀"을 수행할 가능성이 있는지 예측합니다. 사용자가 위험한 풀에 예치하기 전에 경고하거나 온체인 스마트 계약 보안을 모니터링해야 할 때 사용하세요.
➡️ 예시 사용 사례:
• “Will this new DeFi pool rug‑pull if I stake my assets?”
• “Monitor my LP position for potential future exploits.” 입력값:
이름 | 유형 | 필수 여부 | 설명 |
| string | ✅ | 인증을 위한 API 키 |
| string | ✅ | 블록체인 네트워크 ( |
| string | ✅ | 스마트 계약 또는 유동성 풀 주소 |
출력값 (JSON):
{
"message": "string", // e.g. “Success” or error description
"contractAddress": "string", // smart contract address analyzed
"pairAddress": "string", // liquidity pair address on DEX
"contractCreatorAddress": "string | null", // creator address of the contract if known
"risk_score": 0, // numeric internal risk score
"risk_status": "string", // qualitative risk level (e.g. “Low Risk”, “Medium Risk”, “High Risk”)
"risk_indicators": {
"is_honeypot": 0, // honeypot detection flag
"honeypot_with_same_creator": 0, // creator deployed previous honeypots
"can_take_back_ownership": 0, // contract allows reclaiming ownership
"is_mintable": 0, // token supply can be minted
"hidden_owner": 0, // hidden ownership mechanism detected
"buy_tax": 0, // buy transaction tax percentage
"sell_tax": 0, // sell transaction tax percentage
"cannot_buy": 0, // trading restriction preventing buys
"cannot_sell_all": 0, // restriction preventing full sell
"is_blacklisted": 0, // blacklist functionality detected
"is_whitelisted": 0, // whitelist-only functionality detected
"creator_percent": 0, // percentage of supply owned by creator
"lp_holders_locked": false, // liquidity lock status
"liquidity": 0.0, // liquidity amount in base token
"market_cap": 0, // estimated market capitalization
"is_in_dex": 0, // token listed on DEX
"slippage_modifiable": 0, // contract can modify slippage parameters
"transfer_pausable": 0, // transfers can be paused
"is_anti_whale": 0, // anti-whale protection mechanism
"anti_whale_modifiable": 0, // anti-whale parameters modifiable
"trading_cooldown": 0, // cooldown period between trades
"personal_slippage_modifiable": 0, // per-wallet slippage modification
"is_open_source": 0, // contract source verified
"is_proxy": 0, // proxy contract indicator
"owner_address": "string", // owner address of contract
"owner_change_balance": 0, // owner ability to modify balances
"selfdestruct": 0, // self-destruct capability
"external_call": 0, // external calls present
"gas_abuse": 0 // abnormal gas manipulation behavior
},
"liquidityEvent": [
{
"eventType": "string", // liquidity event type (e.g. add/remove)
"amount": 0.0, // liquidity amount affected
"token": "string", // token symbol involved in liquidity
"tx_hash": "string", // transaction hash
"from_address": "string", // address initiating liquidity action
"from_fraud_probability": "0.00–1.00", // fraud probability score for sender
"from_fraud_status": "string", // fraud classification of sender
"createdAt": "ISO-8601 timestamp" // timestamp of liquidity event
}
],
"status": "string", // overall fraud classification of contract
"probabilityFraud": "0.00–1.00", // probability of contract being fraudulent
"chain": "string", // blockchain network identifier (e.g. BNB, ETH, BASE, HAQQ)
"lastChecked": "ISO-8601 timestamp", // last time contract analysis was performed
"contractCreationTime": "ISO-8601 timestamp | null", // contract deployment timestamp
"forensic_details": {
"owner": "object", // owner metadata
"privilege_withdraw": 0, // privileged withdraw capability
"withdraw_missing": 0, // missing withdraw function
"is_open_source": 0, // contract source verification status
"blacklist": 0, // blacklist functionality
"contract_name": "string", // contract/token name
"selfdestruct": 0, // self-destruct capability
"is_proxy": 0, // proxy contract indicator
"approval_abuse": 0 // abnormal token approval behavior
},
"checked_times": 0, // number of times contract has been analyzed
"createdAt": "ISO-8601 timestamp", // record creation time
"updatedAt": "ISO-8601 timestamp" // last update time
}오류 사례:
• `403 Unauthorized` → invalid `apiKey`
• `400 Bad Request` → malformed `network` or `walletAddress`
• `500 Internal Server Error` → temporary downstream failure 4. 신용 점수 도구
ID: credit_score
설명: 블록체인 지갑을 위한 AI 기반 암호화폐 신용/신뢰 점수입니다. 사기 확률, 온체인 유입/유출 분석, 소셜 그래프 분석을 결합하여 1(최고 위험)에서 9(최고 신뢰)까지의 riskRating을 생성합니다. 지갑당 빠르고 단일 숫자의 신용도 신호가 필요한 DeFi 대출 프로토콜을 위해 설계되었습니다.
➡️ 예시 사용 사례:
• "What is the credit score for this wallet?"
• "What's the calculated trust score for this borrower?"
• "Calculate credit score before approving this loan."입력값:
이름 | 유형 | 필수 여부 | 설명 |
| string | ✅ | 인증을 위한 API 키 |
| string | ✅ | 블록체인 네트워크 ( |
| string | ✅ | 점수를 매길 지갑 주소 |
출력값 (JSON):
{
"message": "Success",
"creditData": {
"riskRating": 7,
"walletAddress": "0x..."
}
}riskRating | 위험 수준 | 대출 해석 |
9 | 매우 낮은 위험 | 우량 차입자 |
7–8 | 낮은 위험 | 신뢰할 수 있는 차입자 |
5–6 | 중간 위험 | 주의 필요 |
3–4 | 높은 위험 | 제한적 조건 |
1–2 | 매우 높은 위험 | 거절 |
오류 사례:
• `401 Unauthorized` → invalid `apiKey`
• `400 Bad Request` → malformed `network` or `walletAddress`
• `500 Internal Server Error` → temporary downstream failure5. 토큰 순위 목록 도구
ID: token_rank_list
설명: TokenRank는 토큰 보유자 커뮤니티를 분석하고 보유자의 강도에 따라 모든 토큰의 순위를 매깁니다. 토큰 보유자가 강력할수록 토큰도 강력합니다! 토큰의 순위를 알아야 하거나, 여러 카테고리 및 체인 간에 비교해야 할 때 사용하세요. 검색, 필터링, 정렬 및 페이지네이션을 사용하여 토큰 목록을 반환받을 수 있습니다.
➡️ 예시 사용 사례: – “AI 토큰 카테고리에서 가장 좋은 토큰은 무엇인가요?” – “ETH 체인과 BNB 체인의 x 토큰을 비교해 주세요.”
입력값:
이름 | 유형 | 필수 여부 | 설명 |
| string | ✅ | 페이지네이션 중 가져올 항목 수 |
| string | ✅ | 페이지네이션 중 페이지 번호(오프셋) |
| string | 필터링할 블록체인 네트워크 ( | |
| string | 반환된 토큰을 정렬할 기준 (예: 'communityRank') | |
| string | 'ASC' 또는 'DESC' (sort_by 값 정렬) | |
| string | 토큰 카테고리에 따른 필터링 (예: 'AI Token','RWA Token','DeFi Token','DeFAI Token','DePIN Token') | |
| string | 계약 이름에 따른 검색 |
출력값 (JSON):
{
"message": "string", // e.g. “Successfully fetched records” or error description
"data": {
"total": 0, // integer — total number of matching contracts
"contracts": [
{
"contractAddress": "string", // unique contract or mint address (chain-specific format)
"contractName": "string", // human-readable token name
"ticker": "string", // token symbol (usually uppercase, but not guaranteed)
"chain": "string", // blockchain network (e.g. SOLANA | ETH | BNB | BASE)
"category": "string", // primary category label (e.g. 'AI Token','RWA Token','DeFi Token','DeFAI Token','DePIN Token')
"type": "string", // asset classification (e.g. “token” | “nft”)
"communityRank": 0, // integer — raw ranking based on community metrics
"normalizedRank": 0, // integer — normalized or scaled ranking score
"totalHolders": 0, // integer — total unique wallet holders
"lastProcessedAt": "ISO-8601", // timestamp when analytics were last computed
"createdAt": "ISO-8601", // record creation timestamp
"updatedAt": "ISO-8601" // record last update timestamp
}
]
}
}오류 사례:
• `400 Bad Request` → malformed `network` or `walletAddress`
• `500 Internal Server Error` → temporary downstream failure 6. 토큰 순위 단일 도구
ID: token_rank_single
설명: TokenRank 목록과 유사하게, 토큰 순위는 토큰 보유자 커뮤니티를 분석하고 보유자의 강도에 따라 모든 토큰의 순위를 매깁니다. 토큰 순위 및 토큰 세부 정보 외에도, 토큰 순위 단일 도구는 최고의 보유자 세부 정보와 동일 네트워크 내 다른 토큰들과 비교한 globalRank를 가져옵니다. 계약 주소와 정확한 체인 또는 네트워크를 기반으로 단일 토큰의 순위를 알아야 하거나, 특정 네트워크 또는 체인에서 특정 토큰의 최고 보유자를 알아야 할 때 사용하세요.
➡️ 예시 사용 사례: – “ETH 네트워크에서 해당 토큰의 토큰 순위는 무엇인가요?” – "이 계약 토큰 주소의 최고 보유자는 누구인가요?” – “토큰 순위와 최고의 보유자는 누구인가요?”
입력값:
이름 | 유형 | 필수 여부 | 설명 |
| string | ✅ | 평가할 토큰의 계약 주소 |
| string | ✅ | 필터링할 블록체인 네트워크 ( |
출력값 (JSON):
{
"message": "string", // e.g. “Successfully fetched records” or error description
"data": {
"contract": {
"contractAddress": "string", // unique contract or mint address (chain-specific format)
"contractName": "string", // human-readable token name
"ticker": "string", // token symbol (usually uppercase, but not guaranteed)
"chain": "string", // blockchain network (e.g. SOLANA | ETH | BNB | BASE)
"category": "string", // primary category label (e.g. 'AI Token','RWA Token','DeFi Token','DeFAI Token','DePIN Token')
"type": "string", // asset classification (e.g. “token” | “nft”)
"communityRank": 0, // integer — raw ranking based on community metrics
"normalizedRank": 0, // integer — normalized or scaled ranking score
"totalHolders": 0, // integer — total unique wallet holders
"lastProcessedAt": "ISO-8601", // timestamp when analytics were last computed
"createdAt": "ISO-8601", // record creation timestamp
"updatedAt": "ISO-8601" // record last update timestamp
},
"topHolders": [
{
"contractAddress": "string", // associated contract address
"Holder": {
"walletAddress": "string", // holder wallet address
"chain": "string", // blockchain network of the wallet
"balance": "string", // token balance (string to preserve precision)
"walletAgeInDays": 0, // integer — age of wallet in days
"transactionsNumber": 0, // integer — total transaction count
"totalPoints": 0.0, // float — computed wallet scoring metric
"globalRank": 0 // integer — wallet rank across entire system
}
}
]
}
}오류 사례:
• `400 Bad Request` → malformed `network` or `walletAddress`
• `500 Internal Server Error` → temporary downstream failure 🧠 클라이언트 사용 예시
Node.js 예시
import { MCPClient } from "mcp-client";
const client = new MCPClient("https://prediction.mcp.chainaware.ai/");
const result = await client.call("predictive_rug_pull", {
apiKey: "your_api_key",
network: "BNB",
walletAddress: "0x1234..."
});
console.log(result);Python 예시
from mcp_client import MCPClient
client = MCPClient("https://prediction.mcp.chainaware.ai/")
res = client.call("chat", {"query": "What is the rug pull risk of 0x1234?"})
print(res)서비스 구성:
"type": "sse",
"config": {
"mcpServers": {
"chainaware-behavioural_prediction_mcp": {
"type": "sse",
"url": "https://prediction.mcp.chainaware.ai/sse",
"description": "The Behavioural Prediction MCP Server provides AI-powered tools to analyze wallet behaviour prediction,fraud detection and rug pull prediction.",
"headers":{
"x-api-key":""
},
"params":{
"walletAddress":"",
"network":""
},
"auth": {
"type": "api_key",
"header": "X-API-Key"
}
}
}
}
}🔌 통합 참고 사항
✅ Node.js, Python, 브라우저 기반 환경 전반의 MCP 클라이언트와 호환
🔁 스트리밍 / 실시간 응답을 위해 Server-Sent Events (SSE) 사용
📐 JSON 스키마는 MCP 사양을 준수함
🚦 사용 등급에 따라 속도 제한이 적용될 수 있음
🔑 프로덕션 엔드포인트에는 API 키 필수
Claude Code (CLI) 구성
Claude CLI를 사용하여 SSE 전송을 통해 MCP 서버를 등록하세요:
claude mcp add --transport sse chainaware-behavioural-prediction-mcp-server https://prediction.mcp.chainaware.ai/sse \
--header "X-API-Key: your-key-here"📚 문서: https://code.claude.com/docs/en/mcp
ChatGPT 커넥터 구성
커넥터 / MCP(개발자 모드)를 지원하는 ChatGPT 환경에서 사용 가능.
단계
ChatGPT 설정 열기
앱 / 커넥터로 이동
커넥터 추가 클릭
아래 통합 이름과 URL 입력
구성 저장
통합 세부 정보
이름
ChainAware Behavioural Prediction MCP Server통합 URL
https://prediction.mcp.chainaware.ai/sse?apiKey=your-key-hereClaude 웹 및 Claude 데스크톱 구성
단계
Claude 웹 또는 Claude 데스크톱 열기
설정 → 통합으로 이동
통합 추가 클릭
아래 이름과 URL 입력
추가를 클릭하여 설정 완료
통합 세부 정보
이름
ChainAware Behavioural Prediction MCP Server통합 URL
https://prediction.mcp.chainaware.ai/sse?apiKey=your-key-here📚 문서: https://platform.claude.com/docs/en/agents-and-tools/remote-mcp-servers
Cursor 구성
Cursor 구성 파일(예: mcp.json)에 MCP 서버를 추가하세요:
{
"mcpServers": {
"chainaware-behavioural-prediction-mcp-server": {
"url": "https://prediction.mcpbeta.chainaware.ai/sse",
"transport": "sse",
"headers": {
"X-API-Key": "your-key-here"
}
}
}
}📚 문서: https://cursor.com/docs/context/mcp
🤖 Claude Code 서브 에이전트
이 저장소에는 .claude/agents/에 즉시 사용 가능한 32개의 Claude Code 서브 에이전트가 포함되어 있습니다. 일반적인 Web3 인텔리전스 작업을 즉시 처리하는 전문 에이전트입니다.
에이전트 | 목적 |
| 전체 실사 — 사기 신호를 포함한 심층 행동 프로파일링 |
| 빠른 지갑 사기 검사 |
| 스마트 계약 / LP 안전성 검사 |
| 신뢰 점수 (0.00–1.00) |
| 대출 및 신용도 결정을 위한 암호화폐 신용 점수 (1–9) |
| 행동 신호를 기반으로 한 USD 범위의 12개월 수익 잠재력 (LTV) |
| 평판 점수 (0–4000) |
| AML 규정 준수 점수 (0–100) |
| 지갑 경험 순위 + 리더보드 |
| 개인화된 마케팅 메시지 |
| 보유자 커뮤니티 강도별 토큰 발견/순위 지정 |
| 단일 토큰 심층 분석 + 상위 보유자 |
| 지갑을 초보자/중급자/온보딩 건너뛰기로 라우팅 |
| 지갑을 고래 등급(메가/고래/신흥)으로 분류 |
| 경험 + 위험 등급별 개인화된 DeFi 제품 추천 |
| 에어드랍 자격에 대한 지갑 일괄 검사, 봇/사기 필터링 |
| 차입자 위험 등급(A–F), 담보 비율, 이자율 등급 |
| 상장 전 출시 안전성 감사 — 승인/조건부/거절 |
| 에이전트 + 피더 지갑 검사를 통한 AI 에이전트 신뢰 점수 0–10 |
| 지갑 배치를 코호트별 참여 전략이 포함된 행동 코호트로 세분화 |
| 거래, 전송 또는 계약 상호 작용 전 실시간 거래 전 고/노고 판정 (안전 / 주의 / 차단) |
| DAO 투표자 검사 — 시빌 탐지, 거버넌스 등급 및 투표 가중치 승수 (토큰 가중치, 평판 가중치 및 이차 모델 지원) |
| DAO 투표에 대한 대량 시빌 공격 탐지 — 투표자를 적격/검토/제외로 분류, 조정된 사기 패턴(지갑 팜, 신규 지갑 급증) 탐지 및 평판 가중 투표 승수 생성 |
| 자율 에이전트를 위한 실시간 거래 위험 점수 — 복합 점수 (0–100) 및 파이프라인 작업 (허용 / 플래그 |
This server cannot be deployed
Maintenance
Related MCP Connectors
Crypto market intelligence, token rug-checks, and wallet verification in one MCP server.
MCP server giving AI agents one-connection access to crypto & DeFi data: DeFi protocol TVL, stableco
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
MCP server for building and testing AI agents with multi-model experimentation and insights.
Related MCP Servers
AlicenseCqualityCmaintenanceAn MCP server providing unified access to blockchain operations, bridging, swapping, and crypto trading strategies for AI agents.37179GPL 3.0- AlicenseNot gradedqualityDmaintenanceAn MCP server that detects potential risks in Solana meme tokens, helping AI agents avoid rug pulls and unsafe projects.21MIT
- AlicenseAqualityCmaintenanceMCP server for RugGuard, enabling AI agents to perform pre-trade rug checks on tokens, with paid tools for token scanning and pre-trade verification, and a free metrics resource.3MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for fraud detection using machine learning, behavioral biometrics, and network graph analysis, with agent-to-agent transaction protection and AI agent fingerprinting.4MIT