Kaskad Protocol MCP Server
First-party MCP server for Kaskad Protocol — a DeFi lending protocol on Igra L2 (Kaspa). Enables AI agents to autonomously supply, borrow, repay, withdraw, and stake. Includes 16 tools covering live market reads, governance params, health factor monitoring, emission state, and full write access to on-chain lending operations. Compatible with Claude, OpenClaw, and any MCP-compatible client.
README
kaskad-mcp
MCP (Model Context Protocol) server for Kaskad Protocol — reads live on-chain state from the Igra Galleon Testnet, executes transactions, and exposes tokenomics data via 11 tools.
Tools
| Tool | Description |
|---|---|
getMarkets |
Live APY, utilization, liquidity for all active reserves |
getPosition |
Wallet collateral, debt, health factor, supplied/borrowed positions, staking balance |
getGovernanceParams |
Live DAO-voted parameters from KaskadGovernor (emission split, eligibility thresholds, treasury ratios) |
getEmissions |
KSKD emission state: epoch, vault depletion, supplier/borrower split, TWAL TVL |
getUserRewards |
Claimable KSKD rewards for a wallet address |
getProtocolInfo |
Static metadata + full AGENTS.md integration guide |
getHistory |
Subgraph data: liquidations, APY snapshots, user transaction history |
supply |
Supply an asset into the lending pool |
borrow |
Borrow an asset against collateral |
repay |
Repay outstanding debt |
withdraw |
Withdraw supplied assets |
Quick Start
npm install
npm run build
npm test # 19 unit tests (pure functions, no network)
node dist/index.js
Wallet Setup
Security — read before proceeding
The MCP server requires a private key to sign transactions. Always use a dedicated testnet wallet with no real funds. Never use a wallet that holds mainnet assets.
Never commit your private key to git. The
credentials/directory is gitignored.
The server requires a wallet private key to sign transactions. Use MCP_WALLET_KEY — it is the only recommended method.
Recommended — Environment variable
export MCP_WALLET_KEY=0xYOUR_TESTNET_PRIVATE_KEY
node dist/index.js
For MCP clients (Claude Desktop, OpenClaw, etc.), inject it via the env block in your client config (see MCP Client Config section below). The key never touches the filesystem.
Why not
wallet.json? The server also supportscredentials/wallet.jsonand~/.kaskad-mcp/wallet.jsonas fallback paths for local development convenience. However, Anton (SC Architect) flagged these as an unnecessary attack surface — file-based key storage introduces git-commit risk, filesystem exposure, and misconfigured permission vectors. Do not usewallet.jsonin any shared, CI, or production-adjacent environment. If you must use a file locally, ensurecredentials/stays gitignored (it is by default) and restrict file permissions (chmod 600).
Trust boundary: The server enforces a minimum 100 iKAS reserve in the wallet at all times (to cover gas fees).
MCP Client Config
Add to your MCP client (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"kaskad": {
"command": "node",
"args": ["/path/to/kaskad-mcp/dist/index.js"],
"env": {
"MCP_WALLET_KEY": "0xYOUR_PRIVATE_KEY"
}
}
}
}
Network
| Property | Value |
|---|---|
| Chain ID | 38836 |
| Network | Igra Galleon Testnet |
| RPC | https://galleon-testnet.igralabs.com:8545 |
| Explorer | https://explorer.galleon-testnet.igralabs.com |
| dApp | https://testnet.kaskad.live |
Gas note: Igra Galleon requires minimum 2000 Gwei gas price.
eth_estimateGasunderestimates — all transactions use staticgasLimit: 1_700_000n.
Contract Addresses (current deploy)
| Contract | Address |
|---|---|
| Pool | 0xA1D84fc43f7F2D803a2d64dbBa4A90A9A79E3F24 |
| PoolAddressesProvider | 0x9DB9797733FE5F734724Aa05D29Fa39563563Af5 |
| PriceOracle | 0xc1198A9d400306a0406fD3E3Ad67140b3D059f48 |
| UIPoolDataProvider | 0xbe38809914b552f295cD3e8dF2e77b3DA69cBC8b |
| RewardsController | 0x0eB9dc7DD4eDc2226a20093Ca0515D84b7529468 |
| ActivityTracker | 0xa11FbfB7E69c3D8443335d30c5E6271bEE78b128 |
| EmissionManager | 0xcbcb1c3be7f32bf718b702f7b1700c36058edd8b |
| EmissionVault | 0x18E5d69862E088B1ca326ACf48615875DF1763Af |
| KaskadGovernor | 0xE89b59a211C4645150830Bc63c112d01eE47e888 |
| stKSKD Vault | 0xbA98cd5cC5E99058834072B3428de126b433d594 |
| WrappedTokenGateway | 0xaeb50b9b0340f760ab7c17eafcde90971083b4f9 |
| Token | Address |
|---|---|
| USDC | 0x32F59763c4b7F385DFC1DBB07742DaD4eeEccdb2 |
| WETH | 0xB4129cEBD85bDEcdD775f539Ec8387619a0f1FAC |
| WBTC | 0x9dAc4c79bE2C541BE3584CE5244F3942554D6355 |
| IGRA | 0x04443457b050BBaa195bb71Ef6CCDb519CcB1f0f |
| WIKAS (iKAS) | 0xA7CEd4eFE5C3aE0e5C26735559A77b1e38950a14 |
| KSKD | 0x2d17780a59044D49FeEf0AA9cEaB1B6e3161aFf7 |
Architecture
src/
├── abi/ # ABI JSON fragments from Foundry artifacts
├── contracts.ts # Addresses, token registry, dead pool list
├── rpc.ts # Raw JSON-RPC client (fetch-based, no ethers Provider)
├── typed-contracts.ts # Typed wrappers (Pool, Oracle, ERC20, Governor, Rewards, etc.)
├── index.ts # MCP server + health HTTP endpoint
└── tools/
├── getMarkets.ts
├── getPosition.ts
├── getGovernanceParams.ts
├── getTokenomics.ts # getEmissions + getUserRewards
├── getHistory.ts # Subgraph queries
├── getProtocolInfo.ts
└── executeTransaction.ts # supply/borrow/repay/withdraw
Maintenance Notes
- APY formula:
currentLiquidityRatefromgetReserveDatais in RAY (1e27).rate / 1e25 = APY%. Do NOT multiply by seconds_per_year. - Dead pools: 7 deprecated reserve addresses from prior deploys are filtered from all output.
- iKAS: Native gas token. Balance via
provider.getBalance(), not ERC20. WIKAS is the wrapped form used by the pool. - Address updates: After testnet redeploy, re-extract from dApp bundle (
/assets/index-*.js) and updatesrc/contracts.ts.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.