MCP server that provides rollup data from RollupCodes
Add the following configuration:
{
"mcpServers": {
"rollup-codes": {
"command": "npx",
"args": [
"@limechain/rollup-codes-mcp"
]
}
}
}
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Mac: ~/.cursor/mcp.json
Windows: %USERPROFILE%\.cursor\mcp.json
Once configured, you can ask agent for rollup-specific information, for example:
- Can I deploy this smart contract on [RollupName]
- What OPCODEs are available on [RollupName]
- What are the addresses of built-in contracts (e.g. bridges or oracles) on [RollupName]?
- Clone the repository:
git clone https://github.com/LimeChain/rollup-codes-mcp
cd rollup-codes-mcp
- Install dependencies
npm install
- Build the project
npm run build
{
"mcpServers": {
"rollup-codes": {
"command": "node",
"args": [
"<absoute_path_to_repo>/build/index.js"
]
}
}
}