Skip to main content
Glama
maneesha029

Pendle Finance MCP Server

by maneesha029

Pendle Finance FastMCP Server 🚀

Python FastAPI

This repository contains a Model Context Protocol (MCP) Server built with FastMCP in Python.
It connects to Pendle Finance DeFi Protocol and exposes endpoints for AI agents or clients like MCP Inspector.

Features include:

  • Fetching live yields from Pendle API

  • Simulating staking and swaps

  • Retrieving user DeFi portfolio

  • AI-based token recommendations (simulated)

  • AI future yield predictions (simulated)

âš™ Setup and Installation

  1. Prerequisites

Python 3.10+ installed on your system

Node.js 16+ if you want to use MCP Inspector

  1. Clone This Repo

git clone https://github.com/maneesa029/Pendle_mcp cd Pendle_mcp

  1. Create and Activate a Virtual Environment

Create virtual environment

python -m venv venv

Windows

.\venv\Scripts\activate

macOS/Linux

source venv/bin/activate

  1. Install Dependencies

pip install -r requirements.txt

  1. Configure .env

Create a .env file in the root folder and add your configuration:

FastAPI settings

FASTAPI_ENV=development HOST=127.0.0.1 PORT=8000

Pendle API (no secret key needed for public endpoints)

PENDLE_API_URL=https://api.pendle.finance/v1/yields

Ethereum testnet (if using staking simulation or swaps)

RPC_URL=https://sepolia.infura.io/v3/YOUR_INFURA_KEY PRIVATE_KEY=0xYOUR_TEST_PRIVATE_KEY

âš  Security Warning: Do NOT use your main wallet private key with real funds. Always use a testnet key or a small segregated account for testing.


🔬 Running and Monitoring the Server

  1. Start the Pendle MCP Server

uvicorn server:app --reload --port 8000

You should see:

INFO: Uvicorn running on http://127.0.0.1:8000 INFO: Application startup complete.

  1. Open MCP Inspector (Optional)

If you want to test tools interactively:

npx @modelcontextprotocol/inspector

This will launch a local URL (e.g., http://127.0.0.1:6274)

Open the URL in your browser

In Tools tab, you’ll see all exposed Pendle MCP functions:

get_yield → fetch top yields

stake → simulate staking

swap → simulate swap

portfolio → user portfolio

predict_best_token → AI-recommended token

predict_future → future yield prediction


✅ 3. Test via Python Client

test_client.py

import requests

BASE = "http://127.0.0.1:8000"

print(requests.get(f"{BASE}/get_yield").json()) print(requests.post(f"{BASE}/stake", json={"user_address":"0x123","token":"PENDLE","amount":10}).json()) print(requests.get(f"{BASE}/predict_best_token").json())


🔹 Features

Fetch live Pendle yields from API

Simulate staking and swaps

Retrieve user DeFi portfolio

AI predicts best token to stake

AI predicts future yields for N days

Works seamlessly with MCP Inspector or any AI agent


🔹 Optional AI Improvements

Replace random predictions with historical yield ML model (scikit-learn / Prophet)

Include portfolio optimization for multiple tokens

Connect Ethereum testnet to simulate real transactions

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    Enables AI-powered DeFi operations across Ethereum, Polygon, and Solana with automated portfolio optimization, risk assessment, and yield farming strategies. Provides intelligent portfolio diagnostics, investment strategy generation, and multi-chain DeFi protocol integration through natural language.
    Last updated
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI agents to interact with HyperLend protocol and Kittenswap DEX on Hyperliquid EVM network. Supports DeFi operations including lending, borrowing, withdrawing assets, and token swapping with comprehensive portfolio management.
    Last updated
    8
    25
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Provides AI assistants with access to real-time DeFi lending rates and yield data across 14+ protocols and multiple blockchains. Enables querying borrow/supply rates, comparing platforms, calculating leverage strategies, and finding best earn opportunities.
    Last updated
    6
    32
    4
    MIT

View all related MCP servers

Related MCP Connectors

  • Non-custodial DeFi for AI agents: swaps, concentrated liquidity (V3/V4) zaps + ranges, 5 EVM chains

  • DeFi Yield Intelligence MCP — 8 tools: 19K+ pools, risk-adjusted APY, RWA yields.

  • DeFi interface for AI agents: swap, bridge, yield, lending. Live at syenite.ai.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/maneesha029/Pendle_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server