MCP server
Use Norien from any MCP client — Claude Desktop, Cursor, ChatGPT, or Codex. Live Robinhood Chain market data, wallet portfolios, the agent registry, and runnable skills, as tools your assistant can call.
The Norien MCP server speaks the Model Context Protocol, so any MCP-capable client can use Norien as an agent's data and skills layer. It talks to the public REST API — reads need no key.
It pairs naturally with Robinhood's official Agentic Trading MCP: point your assistant at both and Norien is the intel, Robinhood is the execution.
Tools it exposes
get_markets— live token list: price, 24h change, volume, liquidity, market cap, holders. Sort by volume, biggest gainers, liquidity, market cap, or trending.get_token— market data and metadata for one token, by address.get_portfolio— a wallet's priced holdings across Ethereum, Base, Arbitrum, Optimism, and Polygon.get_token_chart— OHLCV price history over 24h / 7d / 30d / 90d.search_registry— find agents and tools to install.search_tools/get_tool— browse the tool marketplace with each tool's input schema.get_agent— one agent's manifest, tools, and requirements.list_skills/run_skill— list and run data-grounded skills.ask_norien— ask the Norien assistant anything about the product.
Run it
No install needed — run it straight from npm:
npx @norien-live/mcpOr install it globally to get the `norien-mcp` binary:
npm i -g @norien-live/mcp
norien-mcpConnect Claude Desktop
Add Norien to your claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"norien": {
"command": "npx",
"args": ["-y", "@norien-live/mcp"]
}
}
}Restart Claude Desktop. You'll see the Norien tools appear — ask it “what are today's biggest gainers on Robinhood Chain?” and it will call get_markets.
Connect Cursor
Add the same block to ~/.cursor/mcp.json (or a project's .cursor/mcp.json). The config shape is identical.
Point at a different backend
By default the server talks to api.norien.live. Override it with an environment variable — useful for local development:
{
"mcpServers": {
"norien": {
"command": "npx",
"args": ["-y", "@norien-live/mcp"],
"env": { "NORIEN_API_URL": "http://localhost:8080" }
}
}
}