Overview
Tools are the functional extensions of an agent’s intelligence—they enable agents to go beyond conversation by interacting with third-party applications, retrieving information, performing logic-based operations, and triggering workflows across complex environments. Powered by the tool invocation capabilities of LLMs, agents can dynamically identify and invoke the most relevant tools at runtime, ensuring flexibility, scalability, and precision in task execution. When an agent needs to take action, it:- Identifies the appropriate tool based on the task
- Prepares the required parameters
- Invokes the tool through the platform
- Processes the results
- Incorporates the output into its response
| Tool | Purpose |
|---|---|
| Get Leave Balance | Invokes an external API to retrieve leave details |
| Leave Application | Gathers necessary information and applies leaves in the backend system |
| Tool | Purpose |
|---|---|
| Retrieve Outstanding Amount | Fetches the current due amount |
| Fetch Credit Limit | Retrieves the user’s maximum credit limit |
| Initiate Bill Payment | Initiates the bill payment process |
| Find Recent Transactions | Displays recent user transactions from a database |
Tool Types
The Platform supports three tool types, each serving a different purpose—from orchestrating visual workflows to executing custom scripts or invoking remote services.- Workflow Tools: Visual, no-code tools built with drag-and-drop. Best for well-defined, traceable processes.
- Code Tools: Custom JavaScript or Python functions. Best for complex logic and dynamic processing.
- MCP Tools: Remote functions via Model Context Protocol. Best for enterprise integrations and shared toolsets.
Quick Comparison
| Aspect | Workflow | Code | MCP |
|---|---|---|---|
| Interface | Visual builder | Code editor | Server config |
| Languages | No-code | JS, Python | Protocol-based |
| Best for | Defined processes | Custom logic | External services |
| Deployment | API endpoint | Inline execution | Remote server |
| Skill level | Low | Medium-High | Medium |
Tool Types in Detail
Workflow Tools
Workflow Tools provide a visual, no-code interface for designing and orchestrating agent actions. Built for clarity and control, they let you define multi-step workflows using an intuitive graphical builder—ideal for standardized, repeatable processes. They support both synchronous and asynchronous execution modes. Best suited for: Scenarios where business logic is consistent, well-defined, and benefits from visual traceability.| Example | What it does |
|---|---|
| Weather API tool | Retrieves live weather updates |
| Stock Market tool | Fetches real-time stock prices |
| Database Query tool | Accesses structured data from a company’s database |
Code Tools
Code Tools provide maximum flexibility by enabling agents to run custom JavaScript or Python code. They are ideal for handling dynamic logic, conditional processing, or integrations that can’t be captured through pre-defined workflows. Code Tools support synchronous execution and are best when precision, extensibility, or complex algorithms are required. Best suited for: Advanced use cases involving business-specific logic, data transformation, or interaction with complex systems.| Example | What it does |
|---|---|
| SQL Query Processor | Executes SQL queries on a specified database |
| Custom Validator | Validates inputs using custom logic before proceeding |
MCP Tools
MCP Tools connect agents to remote functions hosted on Model Context Protocol (MCP) servers. Following a client-server discovery model, agents can dynamically invoke third-party or proprietary services in real time without embedding logic directly into workflows or code. Once connected, MCP Tools can be selected, configured, versioned, and managed independently—allowing modular and scalable integration across environments. Because they are centrally managed, they support versioning, cross-feature reuse, and simplified development. Best suited for: Seamless integration with external APIs, proprietary platforms, or shared toolsets across teams or organizations.| Example | What it does |
|---|---|
| Enterprise HR Toolset | A suite of HR tools exposed via MCP |
| Remote Invoice Processor | Executes billing operations through a secure MCP endpoint |
How Tool Calling Works
Tool Anatomy
Every tool has these components:Name
A unique identifier used in tool selection.Description
Explains what the tool does. The LLM uses this to decide when to invoke it.Input and Output
Creating Tools
The Tools page provides a structured view of all tools in an app, with clear visibility into their types, statuses, and linked agents.Option 1: Create New
Build a tool from scratch for your specific needs.- Navigate to Tools in your app or the tools library.
- Click + New Tool.
- Select tool type (Workflow, Code, or MCP).
- Configure name, description, and parameters.
- Build the tool logic.
- Test and deploy.
Option 2: Import Existing
Reuse tools from the library or import from files.- Click Import Tool.
- Upload a
.zipfile containing:flow_definition.json(required)app_definition.json(optional)env_variables.json(optional)
- Review and configure.
- Deploy.
Tool Scopes
Library Tools
Created in the Tools section, independent of any app. Once deployed, library tools are accessible across multiple apps and act as templates—when imported into an app, they generate a local copy that can be customized without altering the original.- Reusable across multiple apps.
- Importing is restricted to deployed tools from the library.
- Changes to the library version do not affect local copies in apps.
App-Scoped Tools
Created within a specific Agentic App, or imported from the library into an app. Any modifications apply only to the local copy and do not affect the library version. Changes take effect only after the tool is deployed within the app.- Isolated to that app.
- Changes don’t affect library versions.
- Best for app-specific logic.
Linking Tools to Agents
- Open your agent configuration.
- Navigate to Tools.
- Click + Add Tool.
- Choose:
- Create new — Build app-specific tool.
- Link existing — Connect library tool.
- Import — Upload tool definition.
- Configure tool access and permissions.
Execution Modes
Synchronous
Tool executes immediately, agent waits for response.Asynchronous
Tool executes in background, agent continues or waits for callback.Deployment
After building a tool, deploy it to make it available.Sync Endpoint
Async Poll Endpoint
Async Push (Webhook)
Configure a webhook URL to receive results when ready.Security
API Keys
Tools are secured with API keys for external access.Role-Based Access
Control who can:- View tool configurations.
- Edit tool logic.
- Deploy tools.
- Access execution logs.
PII Protection
Tools inherit app-level PII protection:- Input scanning for sensitive patterns.
- Automatic masking in logs.
- Secure internal access when needed.
Testing Tools
Before deployment, validate tool behavior:- Open the tool details page.
- Click Test.
- Provide sample input parameters.
- Review execution results.
- Check for errors and edge cases.
Monitoring
Track tool performance with:- Execution history — Success/failure rates
- Response times — Latency metrics
- Token usage — For AI-powered tools
- Audit logs — Who changed what, when