MCP Hub
Back to servers

RWA Pipe MCP Server

A comprehensive MCP server providing real-time data on over $300B in Real World Assets (RWAs), including tokenized treasuries, stablecoins, and private credit across 25 blockchains.

Tools
18
Updated
Dec 24, 2025

RWA Pipe MCP Server

MCP (Model Context Protocol) server for connecting AI agents to Real World Asset data. Track $300B+ in tokenized treasuries, stablecoins, and RWA tokens across 25 blockchains.

Quick Start

npm (Recommended)

npx rwapipe-mcp

From Source

git clone https://github.com/rwapipe/mcp.git
cd mcp
npm install
npm run build
npm start

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "rwapipe": {
      "command": "npx",
      "args": ["rwapipe-mcp"]
    }
  }
}

Or with local installation:

{
  "mcpServers": {
    "rwapipe": {
      "command": "node",
      "args": ["/path/to/mcp/dist/index.js"]
    }
  }
}

Available Tools (18)

Tokens

ToolDescription
get_rwa_tokensList all tracked RWA tokens. Filter by chain or category
get_token_detailsGet token info: supply, APY, holders, issuer
get_token_transfersRecent transfers for a token
get_token_holdersTop holders sorted by balance
get_token_historyHistorical TVL/supply data

Portfolio

ToolDescription
get_wallet_portfolioAll RWA holdings for a wallet across all chains
get_holder_balanceBalance of specific holder for a token

Market

ToolDescription
get_rwa_marketMarket overview with all token stats
get_market_statsTotal TVL, token count, average APY
get_market_trends24h/7d changes by category and chain
get_market_moversTop gainers and losers

TVL

ToolDescription
get_tvl_historyHistorical TVL data (up to 365 days)
get_tvl_by_chainCurrent TVL breakdown by blockchain

Issuers

ToolDescription
get_issuersAll token issuers with aggregated TVL
get_issuer_detailsIssuer details and their tokens

Categories & Chains

ToolDescription
get_categoriesToken categories with TVL stats
get_category_detailsCategory details and tokens
get_chainsSupported blockchains with TVL

Supported Blockchains (25)

EVM Chains

ethereum, arbitrum, avalanche, base, bsc, celo, linea, mantle, optimism, polygon, zksync, fraxtal, ink, plume, sei

Non-EVM Chains

solana, sui, aptos, near, ton, tron, stellar, xrpl, algorand, hedera

Asset Categories (10)

CategoryDescription
us-treasuryUS Treasury-backed tokens (BUIDL, USDY, OUSG)
stablecoinFiat-backed stablecoins (USDT, USDC)
money-marketMoney market funds
commodityCommodity-backed tokens (PAXG, XAUT)
equityTokenized equities
non-us-debtNon-US sovereign debt
corporate-bondCorporate bonds
private-creditPrivate credit instruments
structured-creditStructured credit products
real-estateReal estate tokens

Example Queries

Ask Claude:

Market Overview

  • "What's the total TVL in tokenized RWAs?"
  • "Show me the top 5 RWA tokens by TVL"
  • "What are the top gainers in the last 24 hours?"

Token Research

  • "Tell me about BlackRock's BUIDL token"
  • "What's the current APY for USDY?"
  • "Compare BUIDL vs USDY yields"

Chain Analysis

  • "What RWA tokens are available on Base?"
  • "Which chain has the highest RWA TVL?"
  • "Show me all treasuries on Ethereum"

Portfolio

  • "Check my RWA holdings for 0x..."
  • "What's my BUIDL balance?"

Issuers

  • "What issuers have the highest TVL?"
  • "Show me all Ondo Finance tokens"

Environment Variables

VariableDefaultDescription
RWAPIPE_API_URLhttps://rwapipe.com/apiAPI endpoint
MCP_MODEstdioTransport mode: stdio or sse
MCP_PORT3001Port for SSE mode

SSE Mode (Hosted)

For hosted deployments, run in SSE mode:

MCP_MODE=sse MCP_PORT=3001 npm start

Endpoints:

  • GET /sse - SSE connection endpoint
  • POST /message - Message endpoint
  • GET /health - Health check
  • GET / - Server info

Links

License

MIT

Reviews

No reviews yet

Sign in to write a review