execution-run-mcp

execution-run-mcp

Enables AI agents to interact with the Execute.run bot API for managing Shell balances, transferring funds, and executing LLM requests. It provides tools for identity verification, transaction tracking, and performing compute tasks through the Execute.run platform.

Category
Visit Server

README

execution-run-mcp

Model Context Protocol (MCP) server for the Execute.run bot API. Enables AI agents to manage Shell balances, transfer funds, and execute LLM requests through the Execute.run platform.

Installation

Via npx (Recommended)

npx @execution-run/mcp-server

Via npm

npm install -g @execution-run/mcp-server
execution-run-mcp

From Source

git clone https://github.com/execution-run/execution-run-mcp.git
cd execution-run-mcp
bun install
bun run build

Configuration

Set the following environment variables:

  • EXECUTE_RUN_API_KEY (required): Your Execute.run API key from execution.run/api-keys
  • EXECUTE_RUN_API_URL (optional): API base URL (defaults to https://execution.run/v1)

Usage

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "execution-run": {
      "command": "npx",
      "args": ["execution-run-mcp"],
      "env": {
        "EXECUTE_RUN_API_KEY": "sk_live_your_api_key_here"
      }
    }
  }
}

With Kiro

Add to your .kiro/settings/mcp.json:

{
  "mcpServers": {
    "execution-run": {
      "command": "npx",
      "args": ["execution-run-mcp"],
      "env": {
        "EXECUTE_RUN_API_KEY": "sk_live_your_api_key_here"
      }
    }
  }
}

Standalone

EXECUTE_RUN_API_KEY=sk_live_xxx execution-run-mcp

Available Tools

whoami

Get your card and wallet identity information.

Parameters: None

Returns:

{
  "cardId": "crd_abc123",
  "walletId": "exe_xyz789",
  "address": "bot-prod@exe_xyz789",
  "balance": 1000,
  "status": "active"
}

get_balance

Get the current Shell balance and ceiling for your wallet.

Parameters: None

Returns:

{
  "balance": 1000,
  "ceiling": 1000000
}

get_transactions

Get transaction history for your wallet.

Parameters:

  • limit (optional): Number of transactions to return (default: 50, max: 100)

Returns:

{
  "transactions": [
    {
      "id": "tx_123",
      "type": "mint",
      "amount": 1000,
      "balanceAfter": 1000,
      "timestamp": { "_seconds": 1706745600 },
      "purpose": "Initial credit"
    }
  ]
}

transfer

Transfer Shells to another wallet.

Parameters:

  • to (required): Recipient wallet ID (exe_xxx) or card address (cardName@exe_xxx)
  • amount (required): Amount of Shells to transfer (positive integer)
  • purpose (required): Purpose/context for the transfer

Returns:

{
  "transaction": {
    "id": "tx_456",
    "type": "transfer",
    "amount": 100,
    "balanceAfter": 900,
    "purpose": "Payment for service"
  }
}

sign

Sign a challenge with your card's Ed25519 keypair.

Parameters:

  • challenge (required): Base64-encoded challenge to sign

Returns:

{
  "signature": "base64_encoded_signature",
  "cardId": "crd_abc123",
  "walletId": "exe_xyz789"
}

compute

Execute an LLM request by burning Shells.

Parameters:

  • model (required): Model identifier (e.g., 'gemini-2.0-flash', 'gpt-4o', 'claude-3-5-sonnet-latest')
  • messages (required): Array of conversation messages with role and content
  • temperature (optional): Sampling temperature (0-2)
  • maxTokens (optional): Maximum tokens to generate

Returns:

{
  "content": "Hello! How can I help you?",
  "model": "gemini-2.0-flash",
  "cost": 4
}

Development

# Install dependencies
bun install

# Build
bun run build

# Watch mode
bun run dev

# Run locally
bun run start

License

MIT

Links

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured