by crazyrabbitltc
Morpho: Query DeFi market data, vaults, positions and historical APY via Morpho's GraphQL API for portfolio management a
Connects to Morpho's DeFi protocol to query lending market data, vault information, and yield rates for decentralized finance applications.
Morpho is a community-built MCP server published by crazyrabbitltc that provides AI assistants with tools and capabilities via the Model Context Protocol. Morpho: Query DeFi market data, vaults, positions and historical APY via Morpho's GraphQL API for portfolio management a It is categorized under finance, developer tools.
You can install Morpho in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Morpho is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Morpho is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Morpho is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
I recommend Morpho for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We evaluated Morpho against two servers with overlapping tools; this profile had the clearer scope statement.
Strong directory entry: Morpho surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Useful MCP listing: Morpho is the kind of server we cite when onboarding engineers to host + tool permissions.
Morpho reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Morpho is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
I recommend Morpho for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
I recommend Morpho for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
showing 1-10 of 51
A Model Context Protocol (MCP) server that provides tools for querying the Morpho API. This server enables Claude to interact with Morpho's GraphQL API, providing access to market data, vaults, positions, and more.
npm install mcp-morpho-server
{
"tools": {
"morpho": {
"command": "node",
"args": [
"/path/to/node_modules/mcp-morpho-server/build/index.js"
]
}
}
}
get_markets: Retrieve all markets with pagination and filteringget_whitelisted_markets: Get only whitelisted marketsget_market_positions: Get positions for specific marketsget_historical_apy: Get historical APY dataget_oracle_details: Get oracle informationget_vaults: Get all vaults with their current statesget_vault_positions: Get positions for specific vaultsget_vault_transactions: Get vault transaction historyget_vault_allocation: Get vault market allocationsget_vault_reallocates: Get vault reallocation historyget_vault_apy_history: Get historical APY data for vaultsget_asset_price: Get current price and yield informationget_account_overview: Get account positions and transactionsget_liquidations: Get liquidation eventsThe project is written in TypeScript and uses:
To build from source:
git clone https://github.com/crazyrabbitLTC/mcp-morpho-server.git
npm install
npm run build
Contributions are welcome! Please feel free to submit a Pull Request.
ISC
Created by [Your Name] (your@email)
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.