# Realmint MCP server

Agent-native scoring, search and routing for tokenized real-world assets across multi-chain.

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-realmint-io-mcp
- Repository: https://github.com/realmint-io/mcp
- Website: https://realmint.io

## Install
- Endpoint: https://mcp.realmint.io/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://mcp.realmint.io/mcp

## Tools
- realmint_list_assets - 
    List all tokenized real-world assets (RWAs) indexed by Realmint.
    Returns the full schema for each asset including ownership, control,
    transferability, redemption terms, and legal metadata.
     Endpoint: https://mcp.realmint.io/mcp
- realmint_list_market - 
    Market snapshots for indexed RWAs: spot price, 24h change, volume, market
    cap, venue count, and a short price history series. Combine with
    `realmint_get_score` to compare risk against liquidity.

    Args:
        ids: Optional comma-separated asset IDs to filter (e.g. "xaut,paxg").
             Empty = all assets.
     Endpoint: https://mcp.realmint.io/mcp
- realmint_get_asset - 
    Get the full schema for a specific RWA by asset ID.
    Includes issuer details, control capabilities (freeze/mint/burn/blacklist),
    transferability restrictions, redemption mechanics, and legal documents.

    The asset ID is the lowercased ticker (e.g. "xaut", "paxg", "kau", "agri",
    "cgo"). Use `realmint_list_assets` to discover all available IDs — the
    catalog spans ~30 tokens across multiple chains and changes over time.

    Always read `metadata.lifecycle` from the response: a non-null lifecycle
    means the token is migrated/discontinued/abandoned and trading is
    disallowed (score is hard-capped at 49).
     Endpoint: https://mcp.realmint.io/mcp
- realmint_get_asset_history - 
    Get the versioned metadata change history for an asset.
    Each entry records what changed (created, updated) and a full schema snapshot.
    Useful for detecting when an issuer changes terms or control parameters.
     Endpoint: https://mcp.realmint.io/mcp
- realmint_get_score - 
    Get the Risk & Rights Score for an asset across six dimensions:
    - backing (0-100): proof of reserves, audit cadence, backing mechanism
    - enforceability (0-100): governing law, issuer verification, legal documents
    - control (0-100): issuer power risk — freeze, mint, burn, blacklist, upgrade
    - exit (0-100): redemption, transferability, KYC/whitelist, settlement, holding periods
    - liquidity (0-100): market data, venue count, evidence docs
    - social (0-100): Twitter activity (recency-weighted; unverified handles
      are penalized below the worst observed tier)
    Also returns a weighted composite (0-100, higher is better). Weights and
    penalty tiers are versioned server-side — see `policy_version` in the
    response.

    Combine with the asset's `metadata.lifecycle` field (from
    `realmint_get_asset`) to detect dead/migrated tokens — those are
    score-capped at 49.

    Suggested thresholds for decision-making:
    - composite ≥ 75: typical case, proceed
    - 55 ≤ composite < 75: elevated friction (gates, missing audits, etc.);
      review the asset's flags before proceeding
    - composite < 55: high risk; abort or require explicit user override
     Endpoint: https://mcp.realmint.io/mcp
- realmint_get_route_support - 
    List the venues and chains that can route this asset, plus per-venue
    backing/liquidity/social scores and policy flags. Use this to check
    whether a trade is even feasible before quoting — `routing_enabled=false`
    or an empty venue list means the asset can be inspected but not traded
    via Realmint.
     Endpoint: https://mcp.realmint.io/mcp
- realmint_get_price_history - 
    Time-series price history for an asset.

    Args:
        asset_id: Asset identifier
        days: Lookback in days (1-730, default 30)
        granularity: Optional explicit bucket — "5m" | "1h" | "1d". Omit to
            auto-pick (≤2d → 5m, ≤30d → 1h, else 1d). The server cascades to
            coarser buckets when the requested one is empty for this asset.
     Endpoint: https://mcp.realmint.io/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: io.github.realmint-io
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: May 21, 2026
- Source: https://registry.modelcontextprotocol.io
