Action Availability

This document provides an overview of which Agent.ai actions are available across different platforms and SDKs, along with installation instructions for each package.

Installation Instructions

Python SDK

The Agent.ai Python SDK provides a simple way to interact with the Agent.ai Actions API.

Installation:

pip install agentai

Links:

JavaScript SDK

The Agent.ai JavaScript SDK allows you to integrate Agent.ai actions into your JavaScript applications.

Installation:

# Using yarn
yarn add @agentai/agentai

# Using npm
npm install @agentai/agentai

Links:

MCP Server

The MCP (Multi-Channel Platform) Server provides a server-side implementation of all API functions.

Installation:

# Using yarn
yarn add @agentai/mcp-server

# Using npm
npm install @agentai/mcp-server

Links:

Legend:

  • ✅ - Feature is available
  • ❌ - Feature is not available

Notes:

  • The Builder UI has the most comprehensive set of actions available
  • The MCP Server implements all API functions
  • The Python and JavaScript SDKs currently implement the same set of actions
  • Some actions are only available in the Builder UI and are not exposed via the API yet, but we plan to get to 100% parity scross our packaged offerings.

Action Availability Table

ActionDocsAPIBuilder UIAPIMCP ServerPython SDKJS SDK
Get User InputDocs-
Get User ListDocs-
Get User FilesDocs-
Get User Knowledge Base and FilesDocs-
Web Page ContentDocsAPI
Web Page ScreenshotDocsAPI
YouTube TranscriptDocsAPI
YouTube Channel DataDocsAPI
Get Twitter UsersDocsAPI
Google News DataDocsAPI
YouTube Search ResultsDocsAPI
Search ResultsDocsAPI
Get HubSpot CRM ObjectDocs-
Recent TweetsDocsAPI
LinkedIn ProfileDocsAPI
Get LinkedIn ActivityDocsAPI
Enrich with Breeze IntelligenceDocsAPI
Company Earnings InfoDocsAPI
Company Financial ProfileDocsAPI
Domain InfoDocsAPI
Get Data from Builder’s Knowledge BaseDocs-
Get Data from User’s Uploaded FilesDocs-
Set VariableDocs-
Add to ListDocs-
Click Go to ContinueDocs-
Use GenAI (LLM)DocsAPI
Generate ImageDocsAPI
Generate Audio OutputDocsAPI
Orchestrate TasksDocs-
Orchestrate AgentsDocs-
Convert FileDocsAPI
Continue or Exit WorkflowDocs-
If/Else StatementDocs-
For LoopDocs-
End If/Else/For StatementDocs-
Wait for User ConfirmationDocs-
Add HubSpot CRM ObjectDocs-
Update HubSpot CRM ObjectDocs-
Get HubSpot OwnersDocs-
Get HubSpot Object PropertiesDocs-
Get Assigned CompanyDocs-
Query HubSpot CRMDocs-
Create Web PageDocs-
Get HubDB DataDocs-
Update HubDBDocs-
Get ConversationDocs-
Start Browser OperatorDocsAPI
Browser Operator ResultsDocsAPI
Invoke Web APIDocsAPI
Invoke Other AgentDocsAPI
Show User OutputDocs-
Send MessageDocs-
Create Blog PostDocs-
Save To Google DocDocs-
Save To FileDocsAPI
Save To Google SheetDocs-
Format TextDocs-
Store Variable to DatabaseDocsAPI
Get Variable from DatabaseDocsAPI
Bluesky PostsDocsAPI
Search Bluesky PostsDocsAPI
Post to BlueskyDocs-
Get Instagram ProfileDocsAPI
Get Instagram FollowersDocsAPI
Call Serverless FunctionDocs-

Summary

  • UI Builder supports all 65 actions listed above
  • API supports 31 actions
  • MCP Server supports the same 31 actions as the API
  • Python SDK supports 25 actions
  • JavaScript SDK supports 25 actions

The Python and JavaScript SDKs currently implement the same set of core data retrieval and AI generation functions as the builder, but there are some actions that either don’t make sense to implement via our API (i.e. get user input) or aren’t useful as standalone actions (i.e. for loops). You can always implement an agent throught the builder UI and invoke it via API or daisy chain agents together.