{
  "info": {
    "name": "Apiverve — mcp.ai",
    "description": "REST API for the Apiverve 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/apiverve",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "apiverve_advice_generator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/advice/generator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "advice",
            "generator"
          ]
        },
        "description": "Tool to generate a random piece of advice. Use when you need spontaneous guidance or motivation.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_age_calculator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/age/calculator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "age",
            "calculator"
          ]
        },
        "description": "Tool to calculate age from date of birth. Use when you need a breakdown of years, months, weeks, and days from a given DOB. Example: \"Calculate age for dob=1990-01-01\"",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dob\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_air_quality",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/air/quality",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "air",
            "quality"
          ]
        },
        "description": "Tool to get air quality data for a city. Use when you need current AQI, pollutant levels, and a health recommendation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_airline_lookup_name",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/airline/lookup/name",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "airline",
            "lookup",
            "name"
          ]
        },
        "description": "Look up airline information by name. Returns airline details including IATA code (2-letter), ICAO code (3-letter), radio callsign, and country of operation. Supports partial name matching, so searchin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"accept\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_airport_distance_iata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/airport/distance/iata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "airport",
            "distance",
            "iata"
          ]
        },
        "description": "Tool to get distance between two airports by their IATA codes. Use when you have valid airport IATA codes and need the flight distance.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"iata1\": \"\",\n  \"iata2\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_airports_lookup_icao",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/airports/lookup/icao",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "airports",
            "lookup",
            "icao"
          ]
        },
        "description": "Tool to get airport information by ICAO code. Use when you have a valid 4-letter ICAO code and need detailed airport information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icao\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_antonym_finder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/antonym/finder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "antonym",
            "finder"
          ]
        },
        "description": "Tool to get antonyms for a word. Use when you need opposite terms for text analysis.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"word\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_app_store_scraper",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/app/store/scraper",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "app",
            "store",
            "scraper"
          ]
        },
        "description": "Fetch detailed metadata for an iOS/macOS app from the Apple App Store. Use this tool to retrieve comprehensive app information including title, description, ratings, reviews, pricing, screenshots, dev",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"appid\": \"\",\n  \"country\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_currency_converter",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/currency/converter",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "currency",
            "converter"
          ]
        },
        "description": "Tool to convert currency rates. Use when you need to convert an amount between two currencies with the latest exchange rate.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"amount\": 0,\n  \"to_currency\": \"\",\n  \"from_currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_dictionary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/dictionary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "dictionary"
          ]
        },
        "description": "Tool to get the definition of a word. Use when you need to find the meaning of a specific word. E.g., \"Define the word apple.\"",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"word\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "apiverve_weather_by_city",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/weather/by/city",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "weather",
            "by",
            "city"
          ]
        },
        "description": "Tool to get current weather by city. Use when you need to obtain up-to-date weather details for a specific city after confirming the city name. Example: \"What's the weather in Berlin?\"",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"accept\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}