Skip to main content
Glama
34t34f3

defi-yield-scanner-mcp

by 34t34f3

DeFi Yield Scanner MCP Server

Real-time DeFi analytics MCP server for AI agents. Provides token risk analysis, yield scanning, and wallet exposure checking across Base, Ethereum, and Arbitrum.

Features

  • Token Risk Scanner - Comprehensive risk analysis with liquidity depth, volume activity, market cap analysis, and risk scoring

  • DeFi Yield Scanner - Top yield opportunities from Aave, Morpho, Compound, Moonwell, and Uniswap via DeFiLlama

  • Wallet Exposure Check - Portfolio risk analysis across DeFi protocols

Related MCP server: Solana DeFi Intelligence MCP Server

Data Sources

Installation

npm install defi-yield-scanner-mcp

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "defi-scanner": {
      "command": "npx",
      "args": ["defi-yield-scanner-mcp"]
    }
  }
}

OpenClaw

openclaw mcp add defi-scanner -- npx defi-yield-scanner-mcp

Tools

scan_token_risk

Analyze any token by contract address. Returns risk score (0-100), liquidity depth, volume analysis, and actionable risk assessment.

Input: { "token_address": "0x0b3e328455c4059EEb9e3f84b5543F74E24e7E1b" }
Output: { "token": "VIRTUAL", "riskScore": 55, "riskLevel": "MODERATE", ... }

scan_defi_yields

Find top yield opportunities on Base chain. Real-time APY data from DeFiLlama across major protocols.

check_wallet_exposure

Analyze wallet exposure and diversification across DeFi protocols.

Example Output

{
  "token": "VIRTUAL",
  "price": "$0.67",
  "marketCap": "$441M",
  "riskScore": 55,
  "riskLevel": "MODERATE",
  "liquidity": "$762,232",
  "analysis": {
    "liquidityDepth": "Adequate",
    "volumeActivity": "Active",
    "mcToLiqRatio": "0.0017"
  }
}

License

MIT

Available Tools

3 tools
check_wallet_exposureA

Analyze wallet exposure and portfolio risk across DeFi protocols. Checks for concentrated positions, protocol risks, and provides diversification recommendations. Supports any EVM address on Base.

ParametersJSON Schema
NameRequiredDescriptionDefault
wallet_addressYesWallet address to analyze

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the main actions (analyze, checks, provides recommendations) and scope ('Supports any EVM address on Base'), but does not mention read-only nature, data sources, rate limits, or output format. No contradictions found.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exactly two sentences, front-loaded with the primary action, then providing specific details. Every word contributes value; no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with no output schema, the description gives sufficient information to invoke it correctly: the purpose, the input, and the key features. It doesn't describe the return format, but that is not required given the simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with a basic description for wallet_address. The tool description adds the crucial constraint that it supports 'any EVM address on Base', clarifying the accepted input format beyond the schema. This extra context elevates the score above the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's function: 'Analyze wallet exposure and portfolio risk across DeFi protocols', with specific features (concentrated positions, protocol risks, diversification recommendations). This distinguishes it from siblings like scan_token_risk and scan_defi_yields, which focus on narrower concerns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit guidance on when to use this tool vs its siblings. It lists capabilities but does not state conditions like 'use for portfolio-level risk' or alternatives such as 'for single-token risk, use scan_token_risk'. The intended use case is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scan_defi_yieldsA

Scan top DeFi yield opportunities across Base chain. Returns APY, TVL, and pool data from major protocols including Aave, Morpho, Compound, Moonwell, and Uniswap. Updated in real-time from DeFiLlama.

ParametersJSON Schema
NameRequiredDescriptionDefault
chainNoChain to scan (default: Base)Base
min_tvlNoMinimum TVL in USD (default: 100000)

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses that the tool returns APY, TVL, and pool data, and that data is updated in real-time from DeFiLlama. The verb 'Scan' implicitly indicates a read-only operation, and the return data description gives a clear behavioral picture. However, it does not explicitly state any limitations or side effects (e.g., rate limits, API dependencies), though for a scanning tool this is less critical.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, each contributing value: the first states the purpose, the second details the output data, and the third notes the data source and real-time nature. There is no redundant or filler content, and the key information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with two parameters and no output schema. The description covers what the tool does, what it returns, and the data source. Sibling tools are clearly different, and the schema documents the parameters, so the description is complete for an agent to select and use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for both parameters (chain and min_tvl), so the baseline is 3. The description does not add any additional meaning beyond the schema; it mentions 'Base chain' in the text, which aligns with the chain parameter default, but does not elaborate on min_tvl or provide usage details beyond what the schema already states.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Scan top DeFi yield opportunities across Base chain.' It uses a specific verb ('Scan') and resource ('DeFi yield opportunities'), and includes the chain scope. This distinguishes it from sibling tools like scan_token_risk and check_wallet_exposure, which address different concerns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (finding yield opportunities on Base chain) but does not explicitly state when to use this tool over alternatives or provide exclusions. However, the clear distinction from sibling tools (token risk, wallet exposure) gives the agent sufficient context to select this tool for yield scanning.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scan_token_riskA

Comprehensive token risk analysis. Scans any token on Base/Ethereum/Arbitrum for liquidity depth, volume activity, market cap analysis, holder concentration risks, and smart contract security indicators. Returns structured risk report with actionable recommendations.

ParametersJSON Schema
NameRequiredDescriptionDefault
token_addressYesToken contract address to analyze

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It states the tool returns a structured risk report with recommendations, providing some insight into output behavior. However, it does not mention any limitations, side effects, or prerequisites beyond the input. For a read-only analysis tool, this is adequate but not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise (two sentences) and front-loaded with the core purpose ('Comprehensive token risk analysis'), then enumerates specific aspects and outcomes. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with one parameter and no output schema, the description adequately covers what it does, on which chains, and what it returns. It could be enhanced by noting any error conditions or interpretation guidance, but the simple input and read-only nature make this sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already documents the single 'token_address' parameter at 100% coverage, so the description adds no additional parameter semantics. Baseline of 3 is appropriate since the schema fully describes the parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's verb ('scans') and resource ('any token on Base/Ethereum/Arbitrum'), and lists specific analysis dimensions (liquidity, volume, market cap, holder concentration, contract security). It distinguishes itself from siblings like scan_defi_yields and check_wallet_exposure by focusing on token risk.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context: use this for comprehensive token risk analysis. It does not explicitly mention alternatives or exclusions, but the focus on token risk makes the intended use obvious. However, it lacks an explicit 'when not to use' or comparison with sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv1.0.0
    • First observedcheck_wallet_exposure
    • First observedscan_defi_yields
    • First observedscan_token_risk

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct aspect: token risk, yield opportunities, and wallet exposure. No two tools overlap in purpose, making selection unambiguous.

Naming Consistency4/5

Two tools use 'scan_' prefix while the third uses 'check_', a minor deviation. All follow a clear verb_noun pattern, so the inconsistency is not confusing.

Tool Count5/5

Three tools is a well-scoped count for a DeFi scanner, covering the essential workflows without unnecessary bloat.

Completeness4/5

The set covers token risk analysis, yield discovery, and wallet-level exposure. Minor gaps like deeper drill-downs exist, but core workflows are fully supported.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Cross-chain DeFi intelligence MCP server for AI agents. 7 tools for yield discovery, pool analysis, profit simulation, risk scoring, whale tracking, impermanent loss calculation, and DeFi overview across 86 chains and 6,500+ liquidity pools.
    7
    1
    AGPL 3.0
  • -
    license
    Not graded
    quality
    Not graded
    maintenance
    An MCP server that gives AI agents real-time Solana DeFi intelligence — smart money tracking, rug detection, wallet analysis, and token research.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that gives AI agents real-time access to DeFi across multiple chains, enabling non-custodial crypto trading, portfolio queries, and transaction execution.
    14
    7
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server that provides AI agents with pay-per-call access to a suite of tools (honeypot check, token market, DeFi yields, etc.) via USDC on Base using the x402 protocol.
    4
    MIT

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/34t34f3/defi-yield-scanner-mcp'

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