@limechain/rollup-codes-mcp
v1.0.4
Published
MCP server that provides rollup data from RollupCodes
Readme
RollupCodes MCP
MCP server that provides rollup data from RollupCodes
Setup
Claude Desktop or Cursor
Add the following configuration:
{
"mcpServers": {
"rollup-codes": {
"command": "npx",
"args": [
"@limechain/rollup-codes-mcp"
]
}
}
}Claude Desktop config file location
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Cursor config file location
Mac: ~/.cursor/mcp.json
Windows: %USERPROFILE%\.cursor\mcp.json
Usage
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]?
Development
- 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 buildConfiguration with Claude Desktop or Cursor
{
"mcpServers": {
"rollup-codes": {
"command": "node",
"args": [
"<absoute_path_to_repo>/build/index.js"
]
}
}
}