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., "@execution-run-mcptransfer 100 shells to dev@exe_abc123 for compute time"
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.
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)
Via npm
From Source
Configuration
Set the following environment variables:
EXECUTE_RUN_API_KEY(required): Your Execute.run API key from execution.run/api-keysEXECUTE_RUN_API_URL(optional): API base URL (defaults tohttps://execution.run/v1)
Usage
With Claude Desktop
Add to your claude_desktop_config.json:
With Kiro
Add to your .kiro/settings/mcp.json:
Standalone
Available Tools
whoami
Get your card and wallet identity information.
Parameters: None
Returns:
get_balance
Get the current Shell balance and ceiling for your wallet.
Parameters: None
Returns:
get_transactions
Get transaction history for your wallet.
Parameters:
limit(optional): Number of transactions to return (default: 50, max: 100)
Returns:
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:
sign
Sign a challenge with your card's Ed25519 keypair.
Parameters:
challenge(required): Base64-encoded challenge to sign
Returns:
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 withroleandcontenttemperature(optional): Sampling temperature (0-2)maxTokens(optional): Maximum tokens to generate
Returns:
Development
License
MIT