Skip to main content
Glama
atlas-rwa
by atlas-rwa

research-mcp

MCP server that exposes ATLAS research capability to other agents: live tokenized stock data on Robinhood Chain, on-chain source-of-truth reads, and the research atlases published by the autonomous ATLAS agent. Any MCP capable client (Claude Code, Claude Desktop, custom agents) connects over stdio.

Works out of the box against the public Robinhood Chain testnet endpoints, no API keys needed.

Tools

Market data:

  • list_markets: the tokenized stocks on the chain, discovered by merging the Blockscout ERC-20 index (ranked by holders) with GeckoTerminal's trading pools (ranked by liquidity), each classified as equity or not

  • get_token_market: price, 1h/24h change, market cap, liquidity, and volume for a ticker or contract address, via GeckoTerminal

  • chain_tvl: the chain's TVL landscape from DefiLlama, with DEX venues and the RWA category called out

On-chain source of truth:

  • get_token_supply: ERC-20 total supply read directly from chain JSON-RPC at the current block

  • verify_token_contract: bytecode, on-chain name/symbol/decimals, block, and chain id for an address

  • get_token_holders: holder count and top-10 concentration from the Blockscout index

Published research (set ATLAS_API_URL to a running ATLAS deployment):

  • list_research_atlases: the agent's published research atlases, newest first

  • get_observation_history: the agent's recorded time series for a ticker, chain-tvl, or a contract address

  • get_agent_status: model, chain config, publish interval, and memory stats

Tickers resolve through discovery, so TSLA finds the tokenized Tesla contract without a hand written registry. Classification is a heuristic over symbol and name (issuer suffixes, tokenized-equity wording, and company-name corroboration for plain names like "Tesla"), so anything surprising can be verified on chain with verify_token_contract.

Related MCP server: Crypto Options Desk MCP

Setup

npm install
npm run build

Configuration

All optional, via environment variables:

Variable

Default

Purpose

CHAIN_NAME

Robinhood Chain

Display name used in tool output

GECKOTERMINAL_NETWORK

robinhood

GeckoTerminal network slug

DEFILLAMA_CHAIN

Robinhood Chain

DefiLlama chain name

RPC_URL

public testnet RPC

EVM JSON-RPC endpoint for on-chain reads

BLOCKSCOUT_URL

public testnet explorer

Blockscout instance for token index and holders

ATLAS_API_URL

unset

Base URL of an ATLAS deployment, enables research feed tools

Connect a client

Claude Code:

claude mcp add atlas-research -- node /path/to/research-mcp/dist/index.js

Or in any MCP client config:

{
  "mcpServers": {
    "atlas-research": {
      "command": "node",
      "args": ["/path/to/research-mcp/dist/index.js"],
      "env": {
        "ATLAS_API_URL": "https://your-atlas-deployment"
      }
    }
  }
}
Install Server
F
license - not found
A
quality
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    A
    maintenance
    An MCP server that exposes 16 free investment-research signals (insider trades, SEC filings, short data, and live quotes) to any MCP-compatible LLM.
    82
    99
    MIT
  • A
    license
    B
    quality
    A
    maintenance
    An MCP server that gives an LLM agent a typed, audited tool surface over quant crypto-options desk analytics: gamma exposure, vanna, skew, vol surface, options flow, technicals, portfolio greeks, scenario analysis, and live positions.
    22
    1
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    A read-only MCP server that connects to Interactive Brokers Gateway or TWS to expose account, contract, execution, and historical-data queries over stdio.
    9
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    MCP server for the At Par Trading API — trade crypto, manage portfolios, and access market data from any MCP-compatible AI agent.
    16
    MIT

View all related MCP servers

Related MCP Connectors

  • Read-only MCP server for Robinhood Chain token discovery, research, and due diligence via GMGN.

  • MCP server exposing the Backtest360 engine API as tools for AI agents.

  • TradeOS MCP: ticker search, My Agent, chart TA, macro news. npm stdio or HTTP.

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/atlas-rwa/research-mcp'

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