automation
Airtop MCP, CLI, and Lua Integration for AI Agents
Airtop integration docs for AI agents: MCP gateway setup, Airtop CLI commands, Lua API reference, credentials, and function schemas.
8 functions 5 read 3 write API key auth
Airtop for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
airtop- route_slug
airtop- package
airtop- auth_strategy
api_keyAPI key- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Airtop CLIHeadless setup and direct function calls. Airtop MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Airtop MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Airtop.
Claude Code Airtop MCP setup for Claude Code. Cursor Airtop MCP setup for Cursor. Codex Airtop MCP setup for Codex. OpenAI Agents Airtop MCP setup for OpenAI Agents SDK. Claude Agent SDK Airtop MCP setup for Claude Agent SDK. Vercel AI SDK Airtop MCP setup for Vercel AI SDK. LangChain Airtop MCP setup for LangChain. LangGraph Airtop MCP setup for LangGraph. CrewAI Airtop MCP setup for CrewAI. MCP clients Airtop MCP setup for Generic MCP Clients.
Airtop CLI Matrix
Use these pages for direct Airtop CLI workflows in scripts, CI, cron, and agent wrappers.
CI Airtop CLI for CI. Cron Jobs Airtop CLI for cron jobs. Shell Scripts Airtop CLI for shell scripts. Headless Automation Airtop CLI for headless automation. Coding Agents Airtop CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
airtop.airtop_create_session | Write write | 2 | Create a new cloud browser session in Airtop. A session is a container for one or more browser windows. Returns the session ID needed to create windows and interact with pages. |
airtop.airtop_get_session | Read read | 1 | Get details of an existing Airtop browser session, including its status and associated windows. |
airtop.airtop_create_window | Write write | 4 | Open a new browser window within an existing Airtop session. Optionally specify a starting URL to navigate to immediately. |
airtop.airtop_get_window | Read read | 2 | Get details of a browser window in an Airtop session, including its current URL and status. |
airtop.airtop_navigate | Write write | 4 | Navigate a browser window to a specified URL in an Airtop session. Waits for the page to load before returning. |
airtop.airtop_get_page_content | Read read | 2 | Extract the content of the currently loaded page in an Airtop browser window. Returns the page text content, which can be used for analysis, summarization, or data extraction. |
airtop.airtop_list_sessions | Read read | 0 | List all active browser sessions in Airtop. Returns session IDs and their current status. |
airtop.airtop_get_current_user | Read read | 0 | Get the profile of the currently authenticated Airtop user. Useful for verifying API credentials and checking account details. |