{
  "info": {
    "name": "Token Metrics — mcp.ai",
    "description": "REST API for the Token Metrics MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/token_metrics",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "token_metrics_get_price",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/price",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "price"
          ]
        },
        "description": "Tool to retrieve real-time price and market metrics for a given cryptocurrency. Use when you need the latest price, volume, and market cap information for trading or analysis. Response fields like `vo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"currency\": \"\",\n  \"token_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "token_metrics_get_technical_indicators",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/technical/indicators",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "technical",
            "indicators"
          ]
        },
        "description": "Tool to retrieve technical indicators for a token. Use when you need technical analysis data for a specific symbol, interval, and indicator.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"symbol\": \"\",\n  \"end_time\": \"\",\n  \"exchange\": \"\",\n  \"interval\": \"\",\n  \"indicator\": \"\",\n  \"start_time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "token_metrics_get_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tokens"
          ]
        },
        "description": "Tool to retrieve a paginated list of supported tokens with metadata. Use when you need comprehensive token listings across price, market cap, supply, and contract details. Returns token_id values requ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"search\": \"\",\n  \"sort_by\": \"\",\n  \"category\": \"\",\n  \"price_max\": 0,\n  \"price_min\": 0,\n  \"blockchain\": \"\",\n  \"sort_order\": \"\",\n  \"market_cap_max\": 0,\n  \"market_cap_min\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "token_metrics_get_top_market_cap_tokens",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/top/market/cap/tokens",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "top",
            "market",
            "cap",
            "tokens"
          ]
        },
        "description": "Tool to retrieve a list of tokens ranked by market capitalization. Use when you need an overview of the most valuable cryptocurrencies.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"sector\": \"\",\n  \"currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "token_metrics_get_trading_signals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/trading/signals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "trading",
            "signals"
          ]
        },
        "description": "Tool to retrieve entry and exit crypto trading signals. Use when optimizing trading strategies with signal-based insights.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"symbol\": \"\",\n  \"exchange\": \"\",\n  \"timeframe\": \"\",\n  \"signal_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}