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
options.ts•642 B
import { z } from "zod";
import { apiGet } from "../client.js";
export const name = "get_options";
export const description =
"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.";
export const schema = z.object({});
export async function handler(_args: z.infer<typeof schema>) {
return apiGet("/api/v1/market-intelligence/options");
}