loxcorp
Integrates with the Robinhood Chain to provide live data on network stats, tokens, launches, and agent activities directly from the blockchain without intermediate servers.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@loxcorpshow me the latest token launches"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Overview
Lox Corp is the home of agentic finance on Robinhood Chain — self-custody agents that trade, launch their own tokens, and fund their own compute. Lox Dev is how you build against it from the terminal, from your code, or from any AI agent.
One package, three surfaces:
CLI — read the chain and every Lox launch live, with no configuration.
Library — the same reads,
require-able from any Node project.MCP server — expose the chain to Claude, Cursor, Windsurf, or your own agent host over the Model Context Protocol.
Everything is read directly from the public chain. There is no API key, no account, and no server in the middle.
Related MCP server: Monorail MCP Server
Requirements
Node.js 18 or newer (uses the built-in
fetch)No other dependencies
Install
Run it without installing:
npx loxcorp helpOr install globally for the loxcorp and lox commands:
npm install -g loxcorp
lox statsQuick start
lox stats # live Robinhood Chain stats
lox launches # every agent launched through Lox Corp
lox network # the Lox network roll-up
lox lox # the $LOX token
lox agent 0x… # inspect one agent and its mandate
lox watch # live-follow the chain
lox contracts # chain + contract referenceCLI
Group | Commands |
Chain |
|
Lox |
|
Market |
|
Lookup |
|
Build |
|
Full reference: docs/cli.md.
Library
const lox = require("loxcorp");
const summary = await lox.networkSummary();
// { launches, treasuryEth, holders, marketCapUsd, agents }
const agents = await lox.launchesEnriched();
// [{ token, symbol, name, mandate, holders, priceUsd, mcap, liquidityEth, ... }]
const raw = await lox.get("/tokens/" + lox.CONTRACTS.lox);Exports include CHAIN, CONTRACTS, LINKS, LAUNCH, the get client,
format helpers, and the Lox reads (launches, launchesEnriched,
networkSummary, poolLiquidity, loxToken, parseMandate, cleanDesc).
See examples/library.js.
MCP server
Give any agent host live, read-only access to Robinhood Chain and Lox data. Add this to your MCP client config — the same shape works for Claude Desktop, Cursor and Windsurf:
{
"mcpServers": {
"loxcorp": {
"command": "npx",
"args": ["-y", "loxcorp", "mcp"]
}
}
}Twenty-one tools are exposed, grouped as chain, market and Lox. Highlights:
get_stats, get_tokens, get_token, search, get_lox_launches,
get_lox_network, get_lox_token, get_agent, get_launch_guide. Full setup
and tool list: docs/mcp.md.
Network and contracts
Item | Value |
Chain | Robinhood Chain |
Chain ID | 4663 |
RPC |
|
Explorer |
|
$LOX token |
|
Launch factory |
|
LP locker |
|
Swap router |
|
WETH |
|
Pool fee | 1% |
Run lox contracts to print this from the CLI.
How a launch works
A launch is a single transaction. The factory deploys the token, seeds a Uniswap V3 pool, and locks the LP forever — self-custody, no rug.
createAgent(name, symbol, imageUrl, description, salt, devBuyMinOut, feeHandle) payable
-> emits AgentCreated(token, pool, creator, name, symbol, imageUrl, description)Each agent carries an encoded mandate in its description, for example
[Mandate: Semis, AI]. The toolkit decodes it automatically (lox agent,
get_agent, parseMandate). Launch from the guided flow with lox launch, or
at loxcorp.com/launch.
Architecture
loxdev/
bin/lox.js CLI entry point
src/
constants.js chain, contracts, links
client.js Blockscout REST client + formatters
lox.js Lox reads (launches, mandates, treasury, $LOX)
render.js terminal rendering helpers
cli.js argument parsing + command dispatch
commands/ chain · market · lookup · lox · act
mcp/
tools.js MCP tool definitions
server.js stdio JSON-RPC server
index.js library entry point
docs/ cli.md · mcp.md
examples/ library.js · mcp-config.jsonSecurity
The official Lox Corp website is loxcorp.com. The only
official $LOX token mint on Robinhood Chain is
0x5b46263336bf28b5d63f4021624a34d9ad4a8f42. Beware of impersonator sites and
tokens. This toolkit is read-only and never asks for a private key or seed
phrase.
License
MIT © Lox Corp
This server cannot be installed
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
- FlicenseAqualityCmaintenanceConnects AI agents to Real World Asset (RWA) data, enabling queries about tokenized assets, market trends, TVL analytics, token holders, and portfolio tracking across multiple blockchains.Last updated18

Monorail MCP Serverofficial
Alicense-qualityDmaintenanceEnables AI agents to fetch real-time quotes, token information, and trade transaction data from Monorail's aggregation of 11 exchanges and 7000+ tokens.Last updated2MIT- Alicense-qualityBmaintenanceEnables read-only access to Interactive Brokers data including contracts, market data, news, fundamentals, and portfolio/account information for LLM workflows and autonomous agents.Last updated16BSD 3-Clause
- AlicenseAqualityBmaintenanceEnables agents to query live Robinhood Chain data including tokens, wallets, Chainlink feeds, heat scores, and tracking error on tokenized equities, all read-only without API keys.Last updated417MIT
Related MCP Connectors
Provide AI agents and automation tools with contextual access to blockchain data including balance…
Read-only on-chain intelligence for AI agents on Base: balances, tokens, gas, tx status.
Read-only on-chain intel for AI agents on Base: balances, tokens, gas, tx status. No API keys.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/loxcorp/loxdev'
If you have feedback or need assistance with the MCP directory API, please join our Discord server