Scale ai Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Scale ai MCP or direct API to submit labeling tasks, fetch annotation results, manage projects, and review datasets through natural language.
Scale ai Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Scale ai now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Add Studio AssignmentsTool to add project assignments to team members in Scale AI Studio.
Add Task TagsTool to add tags to an existing task.
Create BatchTool to create a new batch within a project.
Create Document Transcription TaskTool to create a document transcription task where workers transcribe and annotate information from single or multi-page documents.
Create Image Annotation TaskTool to create an image annotation task where annotators label images with vector geometric shapes (box, polygon, line, point, cuboid, ellipse).
Create Lidar Annotation TaskTool to create a lidar annotation task where annotators mark objects with 3D cuboids in 3D space.
Create LiDAR Segmentation TaskTool to create a LiDAR segmentation task where annotators assign semantic class labels to individual LiDAR points.
Create Named Entity Recognition TaskTool to create a named entity recognition task for labelers to highlight text entity mentions.
Create Segmentation Annotation TaskTool to create a segmentation task where annotators classify pixels in an image according to provided labels.
Create Text Collection TaskTool to create a textcollection task for collecting information from attachments and/or web sources.
Create Video Annotation TaskTool to create a video annotation task where annotators draw geometric shapes around specified objects across video frames.
Create Video Playback Annotation TaskTool to create a video playback annotation task where annotators draw shapes around specified objects in video files.
Delete Task TagsTool to remove specified tags from a Scale AI task.
Delete Task Unique IDTool to remove the unique identifier from a task.
Finalize BatchTool to finalize a batch so its tasks can be worked on.
Get AssetsTool to retrieve file assets with filtering capabilities by project and metadata.
Get BatchTool to retrieve the details of a batch with the specified name.
Get Batch StatusTool to retrieve the current status of a batch and task completion counts.
Get Fixless AuditsTool to retrieve fixless audits by task ID or audit ID.
Get ProjectTool to retrieve details about a specific Scale AI project using its unique identifier.
Get Quality LabelersTool to retrieve training attempts matching provided filter parameters.
Get Studio AssignmentsTool to retrieve current project assignments of all active team users in Scale AI Studio.
Get Studio BatchesTool to retrieve basic information about all pending batches in Studio.
Get TaskTool to retrieve detailed information about a specific task in Scale AI.
Get TeamsTool to retrieve basic information about all team members associated with the account.
Get Task by IDTool to retrieve detailed information about a specific task using its task ID.
Get Secure Task Response URLTool to retrieve secure authenticated task response data.
Import FileTool to import files from an external URL endpoint into Scale's system rather than uploading directly from local storage.
Invite Team MemberTool to invite users by email to team with specified role.
List BatchesTool to retrieve all batches in descending order by creation date.
List ProjectsTool to retrieve information for all projects in the Scale AI account with optional archived filtering.
List TasksTool to retrieve a paginated list of tasks in descending order by creation time.
Re-send Task CallbackTool to re-send a callback for a completed or errored task to the callback_url.
Remove Studio AssignmentsTool to unassign projects from specified team members in Scale AI Studio.
Reset Batch PrioritiesTool to restore batch priority order to default order (calibration batches first, then sorted by creation date).
Set Batch PrioritiesTool to modify batch priority order in Scale AI Studio.
Set Project OntologyTool to set ontologies on a Scale AI project.
Set Project ParametersTool to set default parameters for tasks created under a project.
Set Task MetadataTool to set key-value metadata on an existing Scale AI task.
Update Task Unique IDTool to update or assign a unique identifier to a task.
Upload FileTool to upload a local file to Scale's servers with a maximum size limit of 80 MB per file.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK for Python or TypeScript

Initialize Client and Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Import and initialize the Composio client, then create a Tool Router session for Scale ai

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Scale ai tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('List all completed annotation tasks for project "road-signs"')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent (Anthropic Claude or Mastra)

Why Use Composio?

AI Native Scale ai Integration

  • Supports both Scale ai MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Scale ai data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Scale ai access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Scale ai
  • Scoped, least privilege access to Scale ai resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Scale ai with Composio?

Yes, Scale ai requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.