Skip to main content
Glama
ChainAware

ChainAware Behavioural Prediction MCP Server

by ChainAware

🧠 Servidor MCP de Predicción del Comportamiento de ChainAware

Nombre del servidor MCP: ChainAware Behavioural Prediction MCP

Categoría: Web3 / Seguridad / Análisis DeFi

Estado: Herramientas públicas – Backend privado

Acceso: Por solicitud (clave API)

URL del servidor: [https://prediction.mcp.chainaware.ai/sse]

Repositorio: [https://github.com/ChainAware/behavioral-prediction-mcp]

Sitio web: [https://chainaware.ai/]

Twitter: [https://x.com/ChainAware/]

mcp-name: io.github.ChainAware/chainaware-behavioral-prediction-mcp


📖 Descripción

El Servidor MCP de Predicción del Comportamiento proporciona herramientas impulsadas por IA para analizar la predicción del comportamiento de billeteras, la detección de fraudes y la predicción de estafas tipo "rug pull".

Los desarrolladores y las plataformas pueden integrar estas herramientas a través del protocolo MCP para proteger a los usuarios de DeFi, monitorear los riesgos de liquidez y calificar la confiabilidad de una billetera o contrato.

Todas las herramientas siguen el Protocolo de Contexto de Modelo (MCP) y pueden ser consumidas a través de clientes compatibles con MCP.


⚙️ Herramientas disponibles

1. Herramienta de detección predictiva de fraudes

ID: predictive_fraud

Descripción: Este algoritmo impulsado por IA pronostica la probabilidad de actividad fraudulenta en una dirección de billetera determinada antes de que ocurra (≈98% de precisión) y realiza comprobaciones AML (Anti-Lavado de Dinero). Utilice esto cuando su usuario desee una evaluación de riesgos o una alerta temprana sobre una dirección de blockchain.

➡️ Casos de uso de ejemplo:

• 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?  

Entradas:

Nombre

Tipo

Requerido

Descripción

apiKey

string

Clave API para autenticación

network

string

Red blockchain (ETH, BNB,POLYGON,TON,BASE, TRON, HAQQ)

walletAddress

string

La dirección de la billetera a evaluar

Salidas (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
    }
  ]
}

Casos de error:

• `403 Unauthorized` → invalid `apiKey`  
• `400 Bad Request` → malformed `network` or `walletAddress`  
• `500 Internal Server Error` → temporary downstream failure  

2. Herramienta de análisis predictivo del comportamiento

ID: predictive_behaviour

Descripción: Este motor impulsado por IA proyecta cuáles son las intenciones de una dirección de billetera o qué es probable que haga a continuación, perfila su historial pasado en la cadena y recomienda acciones personalizadas.

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

➡️ Casos de uso de ejemplo:

• “What will this address do next?”  
• “Is the user high‑risk or experienced?”  
• “Recommend the best DeFi strategies for 0x1234... on ETH network.”

Entradas:

Nombre

Tipo

Requerido

Descripción

apiKey

string

Clave API para autenticación

network

string

Red blockchain (ETH, BNB,BASE,HAQQ,SOLANA)

walletAddress

string

La dirección de la billetera a evaluar

Salidas (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"
        }
      ]
    }
    

Casos de error:

• `403 Unauthorized` → invalid `apiKey`  
• `400 Bad Request` → malformed `network` or `walletAddress`  
• `500 Internal Server Error` → temporary downstream failure  

3. Herramienta de detección predictiva de "rug-pull"

ID: predictive_rug_pull

Descripción: Este motor impulsado por IA pronostica qué fondos de liquidez o contratos tienen probabilidades de realizar un "rug pull" en el futuro. Utilice esto cuando necesite advertir a los usuarios antes de que depositen en fondos de riesgo o para monitorear la seguridad de los contratos inteligentes en la cadena.

➡️ Casos de uso de ejemplo:

• “Will this new DeFi pool rug‑pull if I stake my assets?”  
• “Monitor my LP position for potential future exploits.”  

Entradas:

Nombre

Tipo

Requerido

Descripción

apiKey

string

Clave API para autenticación

network

string

Red blockchain (ETH, BNB, BASE, HAQQ)

walletAddress

string

Dirección del contrato inteligente o fondo de liquidez

Salidas (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
    }

Casos de error:

• `403 Unauthorized` → invalid `apiKey`  
• `400 Bad Request` → malformed `network` or `walletAddress`  
• `500 Internal Server Error` → temporary downstream failure  

4. Herramienta de calificación crediticia

ID: credit_score

Descripción: Calificación crediticia/de confianza cripto impulsada por IA para billeteras blockchain. Combina la probabilidad de fraude, análisis de entrada/salida en la cadena y análisis de grafos sociales para producir una riskRating (calificación de riesgo) del 1 (mayor riesgo) al 9 (mayor confianza). Diseñado para protocolos de préstamos DeFi que necesitan una señal de solvencia rápida y numérica por billetera.

➡️ Casos de uso de ejemplo:

• "What is the credit score for this wallet?"
• "What's the calculated trust score for this borrower?"
• "Calculate credit score before approving this loan."

Entradas:

Nombre

Tipo

Requerido

Descripción

apiKey

string

Clave API para autenticación

network

string

Red blockchain (ETH)

walletAddress

string

La dirección de la billetera a calificar

Salidas (JSON):

{
  "message": "Success",
  "creditData": {
    "riskRating": 7,
    "walletAddress": "0x..."
  }
}

riskRating

Nivel de riesgo

Interpretación de préstamo

9

Riesgo muy bajo

Prestatario preferente

7–8

Riesgo bajo

Prestatario confiable

5–6

Riesgo moderado

Precaución elevada

3–4

Riesgo alto

Términos restringidos

1–2

Riesgo muy alto

Rechazar

Casos de error:

• `401 Unauthorized` → invalid `apiKey`
• `400 Bad Request` → malformed `network` or `walletAddress`
• `500 Internal Server Error` → temporary downstream failure

5. Herramienta de lista de clasificación de tokens

ID: token_rank_list

Descripción: TokenRank analiza la comunidad de poseedores de tokens y clasifica cada token según la fortaleza de sus poseedores. ¡Cuanto más fuertes sean los poseedores del token, más fuerte será el token! Utilice esto cuando necesite conocer la clasificación de un token o tokens, o comparar entre diferentes categorías y cadenas. Puede usar búsqueda, filtrado, ordenamiento y paginación, lo cual devuelve una lista de tokens.

➡️ Casos de uso de ejemplo: – “¿Cuál es el mejor token en la categoría de Token de IA?” – “¿Comparar el token x en la cadena ETH y la cadena BNB?”

Entradas:

Nombre

Tipo

Requerido

Descripción

limit

string

Número de elementos a obtener durante la paginación

offset

string

Número de página (offset) durante la paginación

network

string

Red blockchain para filtrar (ETH, BNB, BASE, SOLANA)

sort_by

string

Ordenar los tokens devueltos según (ej.: 'communityRank')

sort_order

string

'ASC' o 'DESC' para ordenar el valor de sort_by

category

string

Filtrar según la categoría del token (ej. 'AI Token','RWA Token','DeFi Token','DeFAI Token','DePIN Token')

contract_name

string

Buscar según el nombre del contrato

Salidas (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
        }
      ]
    }
  }

Casos de error:

• `400 Bad Request` → malformed `network` or `walletAddress`  
• `500 Internal Server Error` → temporary downstream failure  

6. Herramienta de clasificación de un solo token

ID: token_rank_single

Descripción: Similar a la lista TokenRank, la clasificación de un solo token analiza la comunidad de poseedores y clasifica cada token según la fortaleza de sus poseedores. Excepto por la clasificación del token y los detalles del token, la herramienta de clasificación de un solo token obtiene los mejores poseedores, sus detalles y su globalRank junto con otros en la misma red. Utilice esto cuando necesite conocer la clasificación de un solo token según la dirección del contrato y la cadena o red exacta, o cuando necesite los mejores poseedores de un token específico en una red o cadena específica.

➡️ Casos de uso de ejemplo: – “¿Cuál es la clasificación del token en la red ETH?” – "¿Cuáles son los mejores poseedores de esta dirección de contrato de token?” – “¿Cuál es la clasificación del token y sus mejores poseedores?”

Entradas:

Nombre

Tipo

Requerido

Descripción

contract_address

string

La dirección del contrato del token a evaluar

network

string

Red blockchain para filtrar (ETH, BNB, BASE, SOLANA)

Salidas (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
            }
          }
        ]
      }
    }

Casos de error:

• `400 Bad Request` → malformed `network` or `walletAddress`  
• `500 Internal Server Error` → temporary downstream failure  

🧠 Ejemplo de uso del cliente

Ejemplo en 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);

Ejemplo en 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)

Configuración del servicio:

  "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"
        }
      }
    }
  }
}

🔌 Notas de integración

  • ✅ Compatible con clientes MCP en entornos Node.js, Python y basados en navegador

  • 🔁 Utiliza Eventos Enviados por el Servidor (SSE) para respuestas en tiempo real / streaming

  • 📐 Los esquemas JSON cumplen con la especificación MCP

  • 🚦 Pueden aplicarse límites de tasa según el nivel de uso

  • 🔑 Se requiere clave API para endpoints de producción


Configuración de Claude Code (CLI)

Utilice la CLI de Claude para registrar el servidor MCP a través del transporte SSE:

claude mcp add --transport sse chainaware-behavioural-prediction-mcp-server https://prediction.mcp.chainaware.ai/sse \
  --header "X-API-Key: your-key-here"

📚 Documentación: https://code.claude.com/docs/en/mcp


Configuración del conector de ChatGPT

Disponible en entornos de ChatGPT que admiten Conectores / MCP (Modo Desarrollador).

Pasos

  1. Abra la Configuración de ChatGPT

  2. Navegue a Apps / Conectores

  3. Haga clic en Agregar conector

  4. Ingrese el nombre de integración y la URL a continuación

  5. Guarde la configuración

Detalles de integración

Nombre

ChainAware Behavioural Prediction MCP Server

URL de integración

https://prediction.mcp.chainaware.ai/sse?apiKey=your-key-here

Configuración de Claude Web y Claude Desktop

Pasos

  1. Abra Claude Web o Claude Desktop

  2. Vaya a Configuración → Integraciones

  3. Haga clic en Agregar integración

  4. Ingrese el nombre y la URL a continuación

  5. Haga clic en Agregar para completar la configuración

Detalles de integración

Nombre

ChainAware Behavioural Prediction MCP Server

URL de integración

https://prediction.mcp.chainaware.ai/sse?apiKey=your-key-here

📚 Documentación: https://platform.claude.com/docs/en/agents-and-tools/remote-mcp-servers


Configuración de Cursor

Agregue el servidor MCP a su archivo de configuración de Cursor (ej. mcp.json):

{
  "mcpServers": {
    "chainaware-behavioural-prediction-mcp-server": {
      "url": "https://prediction.mcpbeta.chainaware.ai/sse",
      "transport": "sse",
      "headers": {
        "X-API-Key": "your-key-here"
      }
    }
  }
}

📚 Documentación: https://cursor.com/docs/context/mcp


🤖 Subagentes de Claude Code

Este repositorio incluye 32 subagentes de Claude Code listos para usar en .claude/agents/ — agentes especialistas que manejan tareas comunes de inteligencia Web3 de forma inmediata.

Agente

Propósito

chainaware-wallet-auditor

Debida diligencia completa — perfilado conductual profundo incluyendo señales de fraude

chainaware-fraud-detector

Detección rápida de fraude en billeteras

chainaware-rug-pull-detector

Verificaciones de seguridad de contratos inteligentes / LP

chainaware-trust-scorer

Puntuación de confianza (0.00–1.00)

chainaware-credit-scorer

Puntuación de crédito cripto (1–9) para decisiones de préstamo y solvencia

chainaware-ltv-estimator

Potencial de ingresos a 12 meses (LTV) como rango en USD basado en señales conductuales

chainaware-reputation-scorer

Puntuación de reputación (0–4000)

chainaware-aml-scorer

Puntuación de cumplimiento AML (0–100)

chainaware-wallet-ranker

Clasificación de experiencia de billetera + tabla de clasificación

chainaware-wallet-marketer

Mensajes de marketing personalizados

chainaware-token-ranker

Descubrir/clasificar tokens por la fortaleza de la comunidad de poseedores

chainaware-token-analyzer

Análisis profundo de un solo token + mejores poseedores

chainaware-onboarding-router

Enrutar billeteras a incorporación para principiantes/intermedios/omitir

chainaware-whale-detector

Clasificar billeteras en niveles de ballenas (Mega/Ballena/Emergente)

chainaware-defi-advisor

Recomendaciones personalizadas de productos DeFi por experiencia + nivel de riesgo

chainaware-airdrop-screener

Filtrar por lotes billeteras para elegibilidad de airdrop, filtrar bots/fraude

chainaware-lending-risk-assessor

Grado de riesgo del prestatario (A–F), ratio de colateral, nivel de tasa de interés

chainaware-token-launch-auditor

Auditoría de seguridad de lanzamiento previo a la cotización — APROBADO/CONDICIONAL/RECHAZADO

chainaware-agent-screener

Puntuación de confianza de agente de IA 0–10 mediante verificaciones de agente + billetera alimentadora

chainaware-cohort-analyzer

Segmentar un lote de billeteras en cohortes conductuales con estrategias de participación por cohorte

chainaware-counterparty-screener

Veredicto de sí/no en tiempo real antes de la transacción (Seguro / Precaución / Bloquear) antes de una operación, transferencia o interacción con contrato

chainaware-governance-screener

Detección de votantes DAO — detección de Sybil, nivel de gobernanza y multiplicador de peso de voto (admite modelos ponderados por token, por reputación y cuadráticos)

chainaware-sybil-detector

Detección masiva de ataques Sybil para votos DAO — clasifica votantes como ELEGIBLE / REVISAR / EXCLUIR, detecta patrones de fraude coordinados (granjas de billeteras, oleadas de billeteras nuevas) y produce multiplicadores de voto ponderados por reputación

chainaware-transaction-monitor

Puntuación de riesgo de transacción en tiempo real para agentes autónomos — puntuación compuesta (0–100) y acción de canalización (PERMITIR / MARCAR / RETENER / BLOQUEAR)

chainaware-lead-scorer

Calificación de clientes potenciales de ventas — puntuación de cliente potencial (0–100), nivel (Caliente/Tibio/Frío/Muerto), probabilidad de conversión y ángulo de contacto recomendado

chainaware-upsell-advisor

Ruta de venta adicional para usuarios

-
security - not tested
A
license - permissive license
-
quality - not tested

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ChainAware/chain-aware-behavioural-prediction-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server