automation
Airtop MCP Integration for Generic MCP Clients
Connect Airtop to Generic MCP Clients through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Airtop to Generic MCP Clients
Connect any stdio-compatible MCP client to local KosmoKrator integration tools.
Register kosmo mcp:serve as the command for a local stdio MCP server. The gateway is local, scoped to this integration, and starts with
--write=deny so MCP clients can inspect read-capable tools without receiving write access by default.
Airtop MCP Config for Generic MCP Clients
Start with read-only write policy and expand only for trusted projects.
{
"mcpServers": {
"kosmokrator-airtop": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=airtop",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=airtop --write=deny Why Use KosmoKrator Here
Expose only Airtop instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Airtop Tools Visible to MCP clients
MCP clients sees stable MCP tool names generated from the Airtop integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__airtop__airtop_create_session | airtop.airtop_create_session | Write | 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. |
integration__airtop__airtop_get_session | airtop.airtop_get_session | Read | Get details of an existing Airtop browser session, including its status and associated windows. |
integration__airtop__airtop_create_window | airtop.airtop_create_window | Write | Open a new browser window within an existing Airtop session. Optionally specify a starting URL to navigate to immediately. |
integration__airtop__airtop_get_window | airtop.airtop_get_window | Read | Get details of a browser window in an Airtop session, including its current URL and status. |
integration__airtop__airtop_navigate | airtop.airtop_navigate | Write | Navigate a browser window to a specified URL in an Airtop session. Waits for the page to load before returning. |
integration__airtop__airtop_get_page_content | airtop.airtop_get_page_content | Read | 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. |
integration__airtop__airtop_list_sessions | airtop.airtop_list_sessions | Read | List all active browser sessions in Airtop. Returns session IDs and their current status. |
integration__airtop__airtop_get_current_user | airtop.airtop_get_current_user | Read | Get the profile of the currently authenticated Airtop user. Useful for verifying API credentials and checking account details. |