Skip to main content
Glama

AgentRisk M2M 🛡️

Base 기반 자율 DeFi 에이전트를 위한 사전 거래 보안 계층. 스텔스 허니팟, 악성 수수료, 그리고 러그풀로 자율 트레이딩 봇이 파산하지 않게 하세요.


문제

자율 트레이딩 봇은 빠르지만 완전히 눈이 먼 상태입니다. 매순간 수백 개의 검증되지 않은 토큰이 Base에 출시됩니다. 그중 90% 이상은 판매를 차단하고, 실행 중인 지갑의 자금을 빼돌리거나, 최악의 순간에 전송 수수료를 변경하도록 설계된 함정입니다. 정적 차단 목록(예: 표준 무료 API)은 갓 배포된 난독화된 컨트랙트에는 무용지물입니다. 사람이 수동으로 관리하는 목록이 갱신되는 동안 이미 봇의 자본은 사라져 있습니다.

Related MCP server: hyperd-mcp

솔루션

AgentRisk는 AI 에이전트와 자동화된 스크립트를 위해 특별히 구축된 격리된 기계 판독 가능한 보안 API입니다. 봇이 Uniswap 또는 Aerodrome에서 swap()을 실행하기 전에 AgentRisk에 요청을 보냅니다. AgentRisk는 심층 런타임 시뮬레이션을 실행하고 배포자의 위험한 이력을 추적한 후 엄격하고 이진적인 판정을 반환합니다.

{
  "status": "success",
  "token": "0xYourTargetToken...",
  "recommendation": "REJECT",
  "confidence": 0.99,
  "reasons": [
    "Honeypot detected: sell simulation failed",
    "Deployer address linked to multiple previous rugpulls"
  ]
}⚙️ How It Works (M2M Architecture)
Agent Discovers Token via mempool or DEX router event.

Agent Calls AgentRisk MCP Tool (check_token_risk).

Instant x402 Micropayment ($0.15 USDC instantly settled on Base — no cumbersome API keys, subscriptions, or credit cards; pure machine-to-machine payment).

Binary Decision: The agent receives ALLOW, CAUTION, or REJECT. If it's not ALLOW, the bot aborts the trade instantly.

🚀 Quick Integration
Option 1: MCP Server (For Claude, Cursor & Custom Agents)
Add AgentRisk to your MCP config:
{
  "mcpServers": {
    "agentrisk": {
      "command": "python",
      "args": ["-m", "agentrisk_m2m.server"]
    }
  }
}
Option 2: Direct Python SDK / API Call
from agentrisk import AgentRiskClient

client = AgentRiskClient(endpoint="[https://agentrisk.dev](https://agentrisk.dev)", network="base")

# Pre-trade check before executing swap
verdict = client.check_token(
    token_address="0xTargetTokenAddress...",
    amount_usdc=50
)

if verdict.recommendation == "ALLOW":
    execute_swap()
else:
    print(f"Trade aborted. Risk detected: {verdict.reasons}")
💰 Economy
Model: Pay-per-scan via the x402 protocol.

Cost: 0.15 USDC per comprehensive deep simulation.

ROI: Losing $100 on a single honeypot costs more than 600 security scans. Protect your liquidity.

Built for autonomous systems that trust math, not hype.
F
license - not found
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    A
    quality
    F
    maintenance
    Counterparty risk scoring for agentic commerce. Scores wallets, domains, IPs, and companies 0-100 before AI agents transact via x402 micropayments on Base
    1
    3
    MIT
  • F
    license
    A
    quality
    C
    maintenance
    Agent-Level Transaction Safety Oracle. Before an AI agent signs a blockchain transaction, it returns a SAFE/UNSAFE verdict with a SENTINEL Score (AAA-D) and risk flags. Pay-per-call $0.005 USDC via x402 on Base.
    1

View all related MCP servers

Related MCP Connectors

  • Reputation oracle for AI agents on Base: SAFE/CAUTION/BLOCK + 0-100 score before you pay. x402+MCP

  • AI-native settlement rail + intelligence oracle for autonomous agents. x402, Base mainnet, 81 tools.

  • 30 pay-per-call APIs for AI agents: compliance, trade, safety, web, data. USDC on Base via x402.

View all MCP Connectors

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/Neurobyteio/agentrisk'

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