Skip to main content
Glama
VENTURE-AI-LABS

CryptoDataAPI MCP Server

get_options

Retrieve Bitcoin options market data to analyze open interest, volume, put/call ratios, and max pain price for informed trading decisions.

Instructions

Get BTC options market data including total open interest, volume, put/call ratio, and max pain price. A high put/call ratio (>1) suggests bearish hedging; low (<0.7) suggests bullish positioning. Max pain is the strike price at which most options expire worthless — price tends to gravitate toward max pain near expiry dates.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the get_options tool, which performs an API GET request to retrieve options market data.
    export async function handler(_args: z.infer<typeof schema>) {
      return apiGet("/api/v1/market-intelligence/options");
    }
  • The schema definition for the get_options tool, which accepts no arguments.
    export const schema = z.object({});
  • src/index.ts:28-46 (registration)
    The registration of the options tool within the main server entry point.
    import * as options from "./tools/options.js";
    
    // Prompts
    import * as marketBriefing from "./prompts/market-briefing.js";
    
    const tools = [
      daily,
      marketHealth,
      fearGreed,
      fundingRates,
      liquidations,
      openInterest,
      btcCycle,
      coinProfile,
      searchCoins,
      macro,
      stablecoinFlows,
      etfFlows,
      options,

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/VENTURE-AI-LABS/cryptodataapi-mcp'

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