Morpho API MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_marketsB | Retrieves markets from Morpho with pagination, ordering, and filtering support. |
| get_whitelisted_marketsB | Retrieves only whitelisted markets from Morpho. |
| get_asset_priceC | Get current price and yield information for specific assets. |
| get_market_positionsB | Get positions overview for specific markets with pagination and ordering. |
| get_historical_apyC | Get historical APY data for a specific market. |
| get_oracle_detailsC | Get oracle details for a specific market. |
| get_account_overviewC | Get account overview including positions and transactions. |
| get_liquidationsC | Get liquidation events with filtering and pagination. |
| get_vault_allocationC | Get vault allocation for a specific market. |
| get_vault_reallocatesC | Get vault reallocates for a specific vault. |
| get_vaultsC | Retrieves all vaults with their current states. |
| get_vault_positionsC | Get positions for a specific vault. |
| get_vault_transactionsC | Get latest vault transactions. |
| get_vault_apy_historyC | Get historical APY data for a vault. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 14 tools
Most tools have distinct purposes targeting different resources like accounts, markets, vaults, and specific data types (e.g., prices, APY, liquidations). However, some overlap exists between get_markets and get_whitelisted_markets, which could cause confusion as both retrieve market data with similar filtering capabilities.
All tools follow a consistent snake_case naming pattern with a clear 'get_' prefix followed by a descriptive noun phrase (e.g., get_account_overview, get_historical_apy). This uniformity makes the toolset predictable and easy to navigate.
With 14 tools, the server is well-scoped for its purpose of providing comprehensive data access to Morpho's DeFi platform. Each tool serves a specific, necessary function covering accounts, markets, vaults, and historical data without appearing bloated or sparse.
The toolset offers extensive read-only coverage for querying account details, market data, vault information, and historical metrics like APY and transactions. A minor gap exists in the lack of write or action-oriented tools (e.g., for interacting with positions or vaults), but this may be intentional for a data-focused server.