asteroid

Asteroid lets you build, run, and manage AI browser agents that automate real web workflows — filling forms, navigating portals, extracting data, and…

Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeCan modify data

What it can do

  • GetContext: Get your current user context including organization IDs and names. Call this first to look up an organization's UUID by its name before using other tools. The Asteroid platform is at http
  • AgentProfilesList: List agent profiles for an organization. Profiles are reusable browser environments — NOT agents. Each profile can configure: proxy routing (country-specific), automatic captcha sol
  • AgentProfilesCreate: Create an agent profile — a reusable browser environment config (not an agent). Profiles can include proxy settings, captcha solving, cookie/cache persistence, and vault credentia

What data it sees

Do you need an account

No: the server works without sign-in

Asteroid lets you build, run, and manage AI browser agents that automate real web workflows — filling forms, navigating portals, extracting data, and completing multi-step tasks on any website.

With the Asteroid connector, Claude becomes your agent operations console:

🛠️ Build agents

Create agents and define workflows in plain conversation. Claude assembles the workflow graph, validates output schemas, picks the right node tools, and publishes versions when you're ready.

▶️ Run & steer executions

Start executions, watch their activity step by step, pause/resume/cancel, and send mid-run messages to steer an agent while it works.

🌐 Manage browser environments

Configure reusable agent profiles with country-specific proxies, automatic captcha solving, persistent cookies/cache, and securely vaulted credentials that agents reference without ever seeing the secrets.

📄 Inspect results

Pull execution results, produced files, and persistent shared files straight into your Claude conversation for analysis.

Server tool list (31)

Raw names from tools/list. Only developers need these.

getContextGet your current user context including organization IDs and names. Call this first to look up an organization's UUID by its name before using other tools. The Asteroid platform is at https://platform.asteroid.ai — use this as the base for any dashboard links.
agentProfilesListList agent profiles for an organization. Profiles are reusable browser environments — NOT agents. Each profile can configure: proxy routing (country-specific), automatic captcha solving, persistent cookies/cache across executions, and securely stored credentials (passwords, TOTP/2FA secrets) referenced in agent instructions via ##VARIABLE_NAME## syntax.
agentProfilesCreateCreate an agent profile — a reusable browser environment config (not an agent). Profiles can include proxy settings, captcha solving, cookie/cache persistence, and vault credentials for authentication.
agentProfileGetGet an agent profile by ID, including its proxy, captcha, persistence, and credential settings.
agentProfileUpdateUpdate an agent profile's settings (proxy, captcha solving, cookie/cache persistence, credentials).
agentProfileDeleteDelete an agent profile.
agentProfileClearBrowserCacheClear the persisted browser cache (cookies, storage) for an agent profile, resetting its browser state.
agentListList all agents for an organization. Pass the `organizationId` from `getContext` (use `getContext` first if you only know the org name).
agentCreateCreate a NEW agent (not a new version of an existing one). Requires `organizationId` (from `getContext`), a human-friendly `name`, and an initial `workflow` graph — the backend always seeds an agent with a first workflow. For a blank-but-runnable agent, pass a minimal starter: one start `iris` node plus `success` and `failure` `output` nodes, with `settings.new_agent_loop: true`. For a pre-built agent, pass a fuller graph (same JSON shape as `workflowCreate`). Use `listAvailableTools` to pick node tools and `schemaValidate` for any output schemas. The created agent's first workflow is unpublished; publish it with `workflowPublish` before `agentExecutePost`.
agentExecutePostStart an execution for the given agent
agentDeletePermanently delete an agent and all of its workflows by `agentId`. This is irreversible. Only allowed when all of the agent's executions are in a terminal status (completed, cancelled, or failed); otherwise the request is rejected. Use `agentList` to find the `agentId` first.
executionsListList executions with filtering and pagination
executionGetGet a single execution by ID with all details
executionActivitiesGetGet activities for an execution
executionAgentFilesGetGet all files for an execution, grouped by directory (uploads, downloads, workspace, shared, debug). Files are tracked by the file syncer daemon during execution. Debug files are only visible to admins.
executionContextFilesGetGet all context files attached to an execution
executionStatusUpdateUpdate the status of an execution (pause, resume, or cancel)
executionUserMessagesAddAdd a user message to an execution
listAvailableToolsList all available tools/capabilities that can be assigned to AI Task nodes in workflows
workflowsListList all versions of an agent (lightweight refs with IDs, parents, and version numbers).
workflowCreateCreate a new agent version with a full graph (nodes, transitions), rules, and settings. This is how you update an agent's behavior. Set `parentId` to the current version's ID to maintain lineage. The new version is unpublished until you call `workflowPublish`.
workflowGetGet a full agent version by ID, including the complete node graph, rules, and settings.
workflowPublishPublish an agent version, assigning it a permanent version number and making it the default for `agentExecutePost`.
workflowExecuteExecute a specific agent version (published or unpublished) directly, useful for testing before publishing.
workflowSyncExecutionSync a running execution to use a specific agent version.
schemaValidateValidate a JSON schema against OpenAI structured output requirements
agentSharedFilesGetList all persistent shared files for an agent. These files persist across executions and are automatically restored when a new execution starts.
agentSharedFilesDeleteDelete a file from the agent's persistent shared storage.
agentSharedFilesDeleteAllDelete all shared files for an agent.
agentSharedFilesFreezeSet the frozen status of a shared file. Frozen files are preserved across executions and cannot be overwritten by the agent.
searchDocsSearch Asteroid documentation for guides on building agents, node types, and best practices