Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for Chainlink Runtime Environment, enabling build, simulate, deploy, and manage CRE workflows from any MCP client.

README.md

CRE MCP Server

MCP server for the Chainlink Runtime Environment (CRE) — wraps the CRE CLI and SDK as 30 tools and 10 resources over the Model Context Protocol.

Build, simulate, deploy, and manage CRE workflows from any MCP client (Claude Code, Claude Desktop, Cursor, etc.).

Features

  • 30 MCP tools — full CRE lifecycle: auth, project scaffolding, workflow management, secrets, code generation, account keys, and Solidity contract scaffolding
  • 10 MCP resources — architecture docs, SDK reference, config schemas, contract templates, forwarder addresses
  • Solidity support — scaffold IReceiver contracts, typed consumer contracts, and CCIP receivers
  • Streamable HTTP transport — stateful sessions via Express on port 3200

Prerequisites

  • Node.js 18+
  • CRE CLI: curl -sSfL https://raw.githubusercontent.com/smartcontractkit/cre-cli/main/install/install.sh | bash
  • Bun (required by CRE CLI for WASM compilation): brew install oven-sh/bun/bun

Quick Start

git clone https://github.com/Midwest-AI-Solutions/cremcp.git
cd cremcp
npm install
npm run dev

The server starts at http://localhost:3200 with:

  • MCP endpoint: http://localhost:3200/mcp
  • Health check: http://localhost:3200/health

MCP Client Configuration

Claude Code (~/.claude.json)

{
  "mcpServers": {
    "cre": {
      "type": "http",
      "url": "http://localhost:3200/mcp"
    }
  }
}

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "cre": {
      "type": "http",
      "url": "http://localhost:3200/mcp"
    }
  }
}

Tools

| Category | Tools | Description | |----------|-------|-------------| | Auth | cre_login, cre_logout, cre_whoami | Chainlink platform authentication | | Project | cre_init, cre_build, cre_version, cre_update, cre_generate_bindings | Project scaffolding and build | | Workflow | cre_workflow_simulate, cre_workflow_deploy, cre_workflow_activate, cre_workflow_pause, cre_workflow_delete | Full workflow lifecycle | | Secrets | cre_secrets_create, cre_secrets_update, cre_secrets_delete, cre_secrets_list, cre_secrets_execute | DON-encrypted secrets management | | Codegen | cre_scaffold_trigger, cre_scaffold_capability, cre_scaffold_handler | TypeScript workflow code generation | | Docs | cre_get_docs, cre_list_capabilities, cre_list_triggers | Documentation and reference | | Account | cre_account_link_key, cre_account_list_key, cre_account_unlink_key | Wallet key management | | Solidity | cre_scaffold_receiver, cre_scaffold_consumer, cre_scaffold_ccip_receiver | On-chain contract scaffolding |

Resources

| URI | Description | |-----|-------------| | cre://docs/overview | CRE architecture overview | | cre://docs/sdk-reference | TypeScript SDK quick reference | | cre://docs/forwarder-addresses | KeystoneForwarder addresses by chain | | cre://docs/solidity-integration | End-to-end on-chain integration guide | | cre://contracts/ireceiver | IReceiver interface specification | | cre://contracts/consumer-template | Annotated consumer contract template | | cre://config/workflow-yaml | Workflow YAML schema | | cre://config/secrets-yaml | Secrets YAML schema | | cre://config/project-yaml | Project YAML schema | | cre://templates/workflow-ts | Minimal workflow TypeScript template |

Supported Trigger Types

| Type | Use Case | |------|----------| | cron | Time-based scheduling | | streams | Data Streams price updates | | mercury | Mercury feed updates | | log-trigger | EVM log events | | on-demand | API-initiated | | http | Incoming webhook |

Supported Capability Types

| Type | Use Case | |------|----------| | custom-compute | Arbitrary WASM logic | | write-evm | Write to EVM chains | | data-feeds-read | Read Chainlink price feeds | | streams-lookup | Fetch Data Streams reports | | chain-reader | Read on-chain state | | http-client | HTTP requests with DON consensus | | consensus | Aggregate results across DON nodes |

Architecture

src/
├── index.ts              # Express server + Streamable HTTP transport
├── server.ts             # McpServer instance + tool/resource registration
├── lib/
│   ├── cli-check.ts      # CRE CLI availability detection
│   ├── cli-runner.ts     # child_process.spawn wrapper
│   └── output-parser.ts  # Tool response formatting
├── tools/
│   ├── index.ts          # Tool module registration
│   ├── auth.ts           # Login, logout, whoami
│   ├── project.ts        # Init, build, version, update, generate-bindings
│   ├── workflow.ts       # Simulate, deploy, activate, pause, delete
│   ├── secrets.ts        # CRUD + execute for DON secrets
│   ├── codegen.ts        # Trigger, capability, handler scaffolding
│   ├── docs.ts           # Documentation retrieval
│   ├── account.ts        # Wallet key management
│   └── solidity.ts       # Solidity contract scaffolding
└── resources/
    ├── index.ts          # Resource module registration
    ├── docs.ts           # Overview + SDK reference
    ├── templates.ts      # Config schemas + workflow template
    └── solidity.ts       # IReceiver, consumer, forwarder addresses, integration guide

Development

npm run dev        # Start with hot reload (tsx --watch)
npm run build      # Compile TypeScript
npm start          # Run compiled JS
npm run typecheck  # Type check without emitting

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | PORT | 3200 | Server port | | CRE_CLI_PATH | ~/.cre/bin/cre | Path to CRE CLI binary |

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Cloud & DevOps servers.