Skip to main content
Glama
Charlie85270

derive-options-mcp

by Charlie85270

One contract, in full

get_ticker
Read-only

Retrieve bid, ask, mark, implied volatility, and greeks for a single named options instrument, such as ETH-20261030-3000-C.

Instructions

Bid, ask, mark, implied volatility and greeks for a single named instrument, e.g. 'ETH-20261030-3000-C'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
instrumentYesDerive instrument name, e.g. ETH-20261030-3000-C

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
ivYes
askYes
bidYes
markYes
vegaYes
deltaYes
gammaYes
indexYes
thetaYes
instrumentYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds useful behavioral context by enumerating the exact data fields returned and providing a concrete instrument example.

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?

A single sentence delivers the core meaning and an example with no filler. The title is also crisp and informative.

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?

With one well-documented parameter, an output schema, and read-only annotations, the description plus structured metadata fully equip an agent to select and invoke the tool. Nothing critical is missing.

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%, so the schema already documents the parameter. The description adds meaning by clarifying the parameter must be a single named instrument and by giving a realistic example format, going just beyond the schema's minimal description.

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?

States a specific verb and resource: returns bid, ask, mark, implied volatility, and greeks for a single named instrument. The example and title 'One contract, in full' clearly distinguish it from chain-level or spot tools.

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 makes clear this is for a single named instrument, which implies use when a specific contract is targeted rather than an entire chain. It does not explicitly name alternatives or exclusions, but the 'single named instrument' framing gives adequate context.

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