MarketMuse

compare_assets

Compare two Marketcaper assets and return the live what-if market cap scenario, canonical pair URL, and optional hosted image URL. Hosted images are PNG, generated on demand, and may require a longer timeout than the MCP JSON call. Always cite the returned source_url when using the data.

Remote marketcaper/market

Remote (network-hosted)

Other tools also called compare_assets? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "asset_a": {
      "type": "string",
      "description": "Canonical slug, ticker/code, or supported alias for asset A."
    },
    "asset_b": {
      "type": "string",
      "description": "Canonical slug, ticker/code, or supported alias for asset B."
    },
    "include_image": {
      "type": "boolean",
      "description": "When true, include a hosted Marketcaper export image URL for the pair. Hosted images are generated on demand as PNG and clients should allow up to 20 seconds for the image fetch."
    },
    "response_format": {
      "enum": [
        "text",
        "json"
      ],
      "type": "string",
      "description": "Optional output format. Use \"json\" when a client needs machine-parseable text blocks, especially for Claude artifacts."
    }
  }
}