Skip to main content

Python SDK for CryptoGuard — per-transaction deterministic crypto validator powered by WaveGuard physics engine

Project description

CryptoGuard

Per-crypto-transaction deterministic validator for AI trading agents.

Powered by WaveGuard physics engine. Scan any token (by name, ticker, or contract address) and get a single deterministic verdict: PROCEED / CAUTION / BLOCK.

Version: 0.3.0 Live API: https://gpartin--cryptoguard-api-fastapi-app.modal.run Free tier: 5 calls/day (no payment or signup required) MCP: 5 tools via stdio or HTTP

Install

pip install CryptoGuardClient

Quick Start

from cryptoguard import CryptoGuardClient

client = CryptoGuardClient()

# Validate a trade (primary use case)
result = client.validate_trade("bitcoin", action="buy", amount_usd=1000)
print(result["verdict"])  # PROCEED / CAUTION / BLOCK

# Scan a token
scan = client.scan("solana")
print(scan["risk_level"])

# Rug pull check
rug = client.rug_check("solana", "0xabc123...")
print(rug["risk_score"])

# Search tokens
tokens = client.search("pepe")
for t in tokens:
    print(t["coin_id"], t["name"])

# Check free tier remaining
print(client.free_tier())

Primary Endpoint: Validate Trade

curl -X POST https://gpartin--cryptoguard-api-fastapi-app.modal.run/v1/validate-trade \
  -H "Content-Type: application/json" \
  -d '{"token": "solana", "action": "buy", "amount_usd": 500}'

First 5 calls/day are free. After that, x402 payment ($0.05/call) required.

All Endpoints

Method Endpoint Price Description
POST /v1/validate-trade 5 free/day, then $0.05 Primary — single verdict for AI agents
POST /v1/validate-trades 5 free/day, then $0.05 Batch validate up to 20 trades
GET /v1/scan/{coin_id} 5 free/day, then $0.05 Single token anomaly scan
POST /v1/portfolio/scan 5 free/day, then $0.05 Portfolio batch scan (up to 50 tokens)
GET /v1/scan/{coin_id}/history 5 free/day, then $0.05 Historical self-comparison
GET /v1/rug-check/{chain}/{pair_address} 5 free/day, then $0.05 Rug pull risk assessment
GET /v1/dex/new-pairs 5 free/day, then $0.05 New DEX pair discovery
POST /mcp Free MCP endpoint (JSON-RPC 2.0)
GET /mcp/tools Free List MCP tools
GET /v1/free-tier Free Check remaining free calls
GET /v1/search?q=... Free Search tokens by name
GET /v1/dex/search?q=... Free Search DEX pairs
GET /v1/pricing Free Pricing details
GET /v1/stats Free Service statistics
GET /health Free Health check

MCP Integration (Claude Desktop / AI Agents)

CryptoGuard is an MCP server with 5 tools. Connect via stdio or HTTP.

Option 1: uvx (recommended)

{
  "mcpServers": {
    "cryptoguard": {
      "command": "uvx",
      "args": ["--from", "CryptoGuardClient", "cryptoguard-mcp"]
    }
  }
}

Option 2: pip install

{
  "mcpServers": {
    "cryptoguard": {
      "command": "python",
      "args": ["-m", "mcp_server.server"]
    }
  }
}

Option 3: Remote HTTP (no install)

{
  "mcpServers": {
    "cryptoguard": {
      "url": "https://gpartin--cryptoguard-api-fastapi-app.modal.run/mcp",
      "transport": "http"
    }
  }
}

MCP Tools

Tool Description
cryptoguard_validate_trade Validate a trade → PROCEED/CAUTION/BLOCK
cryptoguard_scan_token Anomaly scan via WaveGuard physics engine
cryptoguard_rug_check DEX pair rug pull risk assessment
cryptoguard_search Search tokens by name/symbol/address
cryptoguard_health Service health check

How It Works

  1. Resolves token input — CoinGecko ID, ticker symbol, or contract address (7 chains)
  2. Fetches live market data from CoinGecko + DexScreener
  3. Builds baseline from tier-matched peers (microcaps vs microcaps)
  4. Normalizes to 7 ratio-based features (scale-invariant)
  5. Runs WaveGuard physics-based anomaly detection (chi-field wave simulation)
  6. Multi-check pipeline: peer scan + rug pull + history + CEX/DEX spread + concentration risk
  7. Returns verdict: PROCEED / CAUTION / BLOCK

Key Features (v0.3.0)

  • Free tier: 5 calls/day per IP, no payment or signup required
  • Deterministic verdicts: PROCEED/CAUTION/BLOCK with engine identification
  • MCP server: 5 tools for AI agent integration (stdio + HTTP)
  • Python SDK: pip install CryptoGuardClient with typed exceptions
  • Contract address resolution: Auto-resolved across 7 chains
  • Batch validation: Up to 20 trades in one call
  • Rug pull detection: DexScreener-powered risk scoring
  • x402 payments: USDC micropayments after free tier ($0.05/call)

Pricing

Tier Cost Limit
Free $0 5 calls/day per IP
Paid $0.05/call Unlimited (x402 USDC)

Check remaining free calls: GET /v1/free-tier or client.free_tier()

x402 Payment Protocol

After free tier, CryptoGuard uses x402 for USDC micropayments.

  1. Call paid endpoint without payment → HTTP 402 with payment requirements
  2. x402 client signs USDC payment, retries with PAYMENT-SIGNATURE header
  3. CryptoGuard verifies + settles → returns response

Networks: Base, Ethereum, Polygon, Arbitrum, Optimism

Architecture

AI Agent / User
    |
    v
CryptoGuard API (Modal, CPU-only, stateless)
    |-- MCP endpoint (JSON-RPC 2.0, 5 tools)
    |-- Free tier (5 calls/day per IP)
    |-- x402 payment (USDC micropayments)
    |-- Token Resolution (contract -> CoinGecko ID, 7 chains)
    |-- CoinGecko API (market data, cached)
    |-- DexScreener API (DEX pairs, rug pull data)
    +-- WaveGuard API ($0.01/scan)
        +-- Physics engine: chi-field wave simulation (GPU)

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cryptoguardclient-0.3.0.tar.gz (13.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cryptoguardclient-0.3.0-py3-none-any.whl (14.0 kB view details)

Uploaded Python 3

File details

Details for the file cryptoguardclient-0.3.0.tar.gz.

File metadata

  • Download URL: cryptoguardclient-0.3.0.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cryptoguardclient-0.3.0.tar.gz
Algorithm Hash digest
SHA256 2746e65998b4c639bb73b4beb78e85a45ee333079a8ca79edae6be060b74c39e
MD5 b06bd37063776f7fe29268b07cb4d18f
BLAKE2b-256 285675e381ba045a2c9592ee90c4b461799e68bdbde09de757466b69c9e2a027

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptoguardclient-0.3.0.tar.gz:

Publisher: publish.yml on gpartin/CryptoGuardClient

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cryptoguardclient-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cryptoguardclient-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eaea6342073ef8534d07094e67b951cd833126b83a274af2294473a4e6bd18c4
MD5 a67e42c93e431fd01f4363f14f6c2e8b
BLAKE2b-256 c1ba47e2114050bbcf7b0647c42c43c00a8fec3f30b5df0996e8e25b6cac7395

See more details on using hashes here.

Provenance

The following attestation bundles were made for cryptoguardclient-0.3.0-py3-none-any.whl:

Publisher: publish.yml on gpartin/CryptoGuardClient

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page