Euler MCP + Cline
What's Cline
Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, using the browser, and more with your permission every step of the way. https://github.com/cline/cline
Quickstart
1. 🛠️ Install the Euler MCP Server
From the Cline extension, click the
MCP Server
tabClick the
Configure MCP Servers
button

The MCP settings files should be display in a tab in VS Code.
Replace the file's contents with this code:
```json
{
"mcpServers": {
"euler-mcp": {
"autoApprove": [],
"disabled": false,
"timeout": 60,
"url": "https://dev.euler.ai/mcp/sse",
"transportType": "sse"
}
}
}
```
After saving the file:
Cline will detect the change automatically
The MCP installer will be downloaded and installed
Cline will start the MCP installer
You'll see the server status in Cline's MCP settings UI
🤔 What Next?
You can now talk to Cline. It should know when to call the relevant tools.
Things you might try asking Cline:
Check the current ETH balance of vitalik.eth
Look up the price of USDC on Ethereum
Show me the latest block on Optimism
Last updated