# Apiverve — how to use (mcp.ai)

Connect your Apiverve account and use 11 tools for developer tools straight from your AI agent. Connect with your own API key. APIVerve offers a comprehensive suite of APIs designed to simplify integration processes, providing developers with scalable and reliable solutions for various applications.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_apiverve?ms=1787291280000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `apiverve_advice_generator`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/apiverve`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/apiverve/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/apiverve/advice/generator` — Tool to generate a random piece of advice. Use when you need spontaneous guidance or motivation.
- `POST https://api.mcp.ai/api/apiverve/age/calculator` — 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: { dob: string }
- `POST https://api.mcp.ai/api/apiverve/air/quality` — Tool to get air quality data for a city. Use when you need current AQI, pollutant levels, and a health recommendation.
  - body: { city: string }
- `POST https://api.mcp.ai/api/apiverve/airline/lookup/name` — 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: { name: string, accept?: string }
- `POST https://api.mcp.ai/api/apiverve/airport/distance/iata` — 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: { iata1: string, iata2: string }
- `POST https://api.mcp.ai/api/apiverve/airports/lookup/icao` — Tool to get airport information by ICAO code. Use when you have a valid 4-letter ICAO code and need detailed airport information.
  - body: { icao: string }
- `POST https://api.mcp.ai/api/apiverve/antonym/finder` — Tool to get antonyms for a word. Use when you need opposite terms for text analysis.
  - body: { word: string }
- `POST https://api.mcp.ai/api/apiverve/app/store/scraper` — 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: { appid: string, country: string }
- `POST https://api.mcp.ai/api/apiverve/currency/converter` — Tool to convert currency rates. Use when you need to convert an amount between two currencies with the latest exchange rate.
  - body: { amount: number, to_currency: string, from_currency: string }
- `POST https://api.mcp.ai/api/apiverve/dictionary` — 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: { word: string }
- `POST https://api.mcp.ai/api/apiverve/weather/by/city` — 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: { city: string, accept?: string }

## Example prompts
- "What can I do in Apiverve?"
- "Show me a summary of my Apiverve account"

## More
- Page: https://mcp.ai/apiverve
- Agent spec (llms.txt): https://mcp.ai/apiverve/llms.txt
- Postman collection: https://mcp.ai/apiverve/postman.json
