Behavioural Prediction MCP Server
B

Behavioural Prediction MCP Server

The behavior prediction MCP server provides AI-driven tools for analyzing wallet behavior prediction, fraud detection, and rug pull scam prediction, helping to protect DeFi users and monitor liquidity risks.
2 points
7.9K

Installation

Copy the following command to your Client for configuration
Note: Your key is sensitive information, do not share it with anyone.

🧠 Behavioural Prediction MCP Server

The Behavioural Prediction MCP Server offers AI - powered tools for wallet behavior prediction, fraud detection, and rug pull prediction, safeguarding DeFi users and providing trustworthiness scores.

🚀 Quick Start

The Behavioural Prediction MCP Server is a public - facing tool with a private backend. It can be accessed by request with an API key. Here are the basic details:

  • MCP Server Name: Behavioural Prediction MCP
  • Category: Web3 / Security / DeFi Analytics
  • Status: Public tools – Private backend
  • Access: By request (API key)
  • Server URL: [https://prediction.mcp.chainaware.ai/]
  • Repository: [https://github.com/ChainAware/behavioral - prediction - mcp]

✨ Features

The server provides the following AI - powered tools:

  • Analyze wallet behavior prediction.
  • Conduct fraud detection.
  • Perform rug pull prediction.
  • Developers and platforms can integrate these tools via the MCP protocol to protect DeFi users, monitor liquidity risks, and score wallet or contract trustworthiness.

📦 Installation

There is no specific installation guide provided in the original README.

💻 Usage Examples

Node.js Example

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 Example

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)

📚 Documentation

Available Tools

1. Predictive Fraud Detection Tool

  • ID: predictive_fraud
  • Description: This AI - powered algorithm forecasts the likelihood of fraudulent activity on a given wallet address before it happens (≈98% accuracy) and performs AML/Anti - Money - Laundering checks. Use it when your user wants a risk assessment or early - warning on a blockchain address.
  • Example Use Cases:
    • Is it safe to interact with vitalik.eth?
    • What is the fraudulent status of this address?
    • Is my new wallet at risk of being used for fraud?
  • Inputs: | Property | Details | |----------|---------| | apiKey | string, required for authentication | | network | string, required, Blockchain network (ETH, BNB,POLYGON,TON,BASE, TRON, HAQQ) | | walletAddress | string, required, The wallet address to evaluate |
  • Outputs (JSON):
{
    "message": "string",              // Human - readable status message
    "walletAddress": "string",        // hex address 
    "status": "Fraud",                // Fraudelent status (Fraud,Not Fraud,New Address)
    "probabilityFraud": "0.00–1.00",  // Decimal probability
    "token": "string",                //
    "lastChecked": "ISO - 8601 timestamp",
    "forensic_details": {             // Deep forensic breakdown
    /* ...other metrics... */
    },
    "createdAt": "ISO - 8601 timestamp", 
    "updatedAt": "ISO - 8601 timestamp"
}
  • Error cases:
    • 403 Unauthorized → invalid apiKey
    • 400 Bad Request → malformed network or walletAddress
    • 500 Internal Server Error → temporary downstream failure

2. Predictive Behaviour Analysis Tool

  • ID: predictive_behaviour
  • Description: This AI - driven engine projects what a wallet address intentions or what address is likely to do next, profiles its past on - chain history, and recommends personalized actions.
  • Example Use Cases:
    • “What will this address do next?”
    • “Is the user high - risk or experienced?”
    • “Recommend the best DeFi strategies for 0x1234... on ETH network.”
  • Inputs: | Property | Details | |----------|---------| | apiKey | string, required for authentication | | network | string, required, Blockchain network (ETH, BNB,BASE,HAQQ) | | walletAddress | string, required, The wallet address to evaluate |
  • Outputs (JSON):
{
    "message":           "string",                    // e.g. “Success” or error text  
    "walletAddress":     "string",                    // echoed input  
    "status":            "string",                    // Fraudelent status (Fraud,Not Fraud,New Address)  
    "probabilityFraud":  "0.00–1.00",                 // decimal fraud score  
    "lastChecked":       "ISO - 8601 timestamp",        // e.g. “2025 - 01 - 03T16:19:13.000Z”  
    "forensic_details":  { /* dict of forensic metrics */ },  
    "categories":        [ { "Category":"string", "Count":int },],  
    "riskProfile":       [ { "Category":"string", "Balance_age":float },],  
    "segmentInfo":       "JSON - string of segment counts",  
    "experience":        { "Type":"Experience", "Value":int },  
    "intention":         {                              
    "Type":"Intentions",  
    "Value": { "Prob_Trade":"High", "Prob_Stake":"Medium",}  
    },  
    "protocols":         [ { "Protocol":"string","Count":int },],  
    "recommendation":    { "Type":"Recommendation", "Value":[ "string",] },  
    "createdAt":         "ISO - 8601 timestamp",  
    "updatedAt":         "ISO - 8601 timestamp"  
}
  • Error cases:
    • 403 Unauthorized → invalid apiKey
    • 400 Bad Request → malformed network or walletAddress
    • 500 Internal Server Error → temporary downstream failure

3. Predictive Rug - Pull Detection Tool

  • ID: predictive_rug_pull
  • Description: This AI - powered engine forecasts which liquidity pools or contracts are likely to perform a “rug pull” in the future. Use it when you need to warn users before they deposit into risky pools or to monitor smart - contract security on - chain.
  • Example Use Cases:
    • “Will this new DeFi pool rug - pull if I stake my assets?”
    • “Monitor my LP position for potential future exploits.”
  • Inputs: | Property | Details | |----------|---------| | apiKey | string, required for authentication | | network | string, required, Blockchain network (ETH, BNB, BASE, HAQQ) | | walletAddress | string, required, Smart contract or liquidity pool address |
  • Outputs (JSON):
{
  "message": "Success",
  "contractAddress": "0x1234...",
  "status": "Fraud",
  "probabilityFraud": 0.87,
  "lastChecked": "2025-10-25T12:45:00Z",
  "forensic_details": { /* dict of on - chain metrics */ }, 
  "createdAt": "2025-10-25T12:45:00Z",
  "updatedAt": "2025-10-25T12:45:00Z"
}
  • Error cases:
    • 403 Unauthorized → invalid apiKey
    • 400 Bad Request → malformed network or walletAddress
    • 500 Internal Server Error → temporary downstream failure

Service Configuration

{
  "type": "http",
  "config": {
    "mcpServers": {
      "behavioural_prediction_mcp": {
        "type": "http",
        "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"
        }
      }
    }
  }
}

Integration Notes

  • Compatible with all MCP clients (Node, Python, Browser).
  • Uses Server - Sent Events (SSE) for real - time responses.
  • JSON schemas match MCP spec.
  • Rate limits may apply.
  • API key required for production endpoints.

Access Policy

The MCP server requires an API key for production usage. To request access, you can subscribe to listed available plans via: https://chainaware.ai/pricing

📄 License

The client examples are under the MIT license. The server implementation and backend logic are proprietary and remain private.

Alternatives

M
Maverick MCP
MaverickMCP is a personal stock analysis server based on FastMCP 2.0, providing professional level financial data analysis, technical indicator calculation, and investment portfolio optimization tools for MCP clients such as Claude Desktop. It comes pre-set with 520 S&P 500 stock data, supports multiple technical analysis strategies and parallel processing, and can run locally without complex authentication.
Python
9.6K
4 points
A
Aderyn
Aderyn is an open - source Solidity smart contract static analysis tool written in Rust, which helps developers and security researchers discover vulnerabilities in Solidity code. It supports Foundry and Hardhat projects, can generate reports in multiple formats, and provides a VSCode extension.
Rust
10.1K
5 points
C
Contracts Wizard
OpenZeppelin Contracts Wizard is an interactive smart contract building tool that allows users to generate contract code based on OpenZeppelin components by selecting contract types, parameters, and functions. It supports multiple programming languages and provides API and embedding functions.
TypeScript
10.3K
4 points
M
MCP Scan
MCP-Scan is a security scanning tool for MCP servers, used to detect common security vulnerabilities such as prompt injection, tool poisoning, and cross-domain escalation.
Python
17.8K
5 points
A
Agentic Radar
Agentic Radar is a security scanning tool for analyzing and assessing agentic systems, helping developers, researchers, and security experts understand the workflows of agentic systems and identify potential vulnerabilities.
Python
14.0K
5 points
A
Awesome Web3 MCP Servers
This is a curated list of Web3 Model Context Protocol (MCP) servers, covering multiple categories such as chain interaction, trading, DeFi, market data, tools, and social. MCP is an open protocol that standardizes how applications provide context to LLMs, similar to the USB - C port for AI applications. DeMCP is the first decentralized MCP network, focusing on providing self - developed and open - source MCP services for agents, supporting cryptocurrency payments, and redefining the security and reliability of MCP by combining TEE and blockchain registries.
15.9K
4.5 points
I
Ida Pro MCP
Certified
IDA Pro MCP is a server plugin for reverse engineering. It interacts with client tools through the MCP protocol, providing functions such as function analysis, comment modification, variable renaming, etc., and supports multiple MCP clients such as Cline, Roo Code, etc.
Python
20.1K
5 points
S
Stripe Agent Toolkit
The Stripe Agent Toolkit is a toolkit that supports the integration of multiple AI agent frameworks (such as OpenAI, LangChain, CrewAI, etc.) with the Stripe API. It provides support for Python and TypeScript, simplifying payment-related operations.
TypeScript
15.4K
5 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
32.3K
5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
21.8K
4.3 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
65.2K
4.3 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
20.1K
4.5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
59.8K
4.5 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
28.3K
5 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
19.8K
4.5 points
M
Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
43.3K
4.8 points
AIBase
Zhiqi Future, Your AI Solution Think Tank
© 2026AIBase