Agenty MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Agenty MCP or direct API to scrape websites, extract structured data, monitor web changes, and automate browser workflows through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Agenty Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Agenty 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 List RowsTool to add new rows to a list.
Create AgentCreates a new Agenty agent for web scraping, change detection, crawling, map monitoring, or brand monitoring.
Get Agent TemplatesTool to fetch all public agent templates and sample agents.
Delete Agent by IDTool to delete a single agent by its ID.
Fetch all agentsTool to fetch all active agents under an account.
Get Agent by IDRetrieves complete details of a specific agent including its configuration, input settings, scheduler, and metadata.
Update Agent by IDUpdates an existing agent's configuration, settings, and metadata.
Create API KeyCreates a new API key for programmatic access to the Agenty API.
Delete API key by IDDelete an API key by its unique identifier.
Download API keysTool to download all API keys under an account in CSV format.
Get all API keysTool to retrieve all API keys under an account.
Get API key by IDRetrieves detailed information about a specific API key by its ID.
Reset API key by IDResets (regenerates) the secret value of an existing API key.
Update API key by IDUpdates an existing API key's name and role by its unique identifier.
Capture ScreenshotTool to capture a full-page or visible screenshot of any webpage URL.
Capture Screenshot with OptionsTool to capture webpage screenshots with extensive customization options including full-page capture, image format, quality settings, viewport configuration, and post-processing.
Change API key status by IDToggles the enabled/disabled status of an API key.
Get all connectionsRetrieves all connections from your Agenty account.
Convert URL to PDFTool to convert a webpage URL to a PDF document.
Convert URL to PDF with OptionsTool to convert a URL or raw HTML to PDF with customizable options.
Copy AgentTool to copy an existing agent by its ID, creating a duplicate with optionally a new name.
Create WorkflowCreates a new workflow in Agenty to automate actions based on agent events.
Get dashboard reports and usageTool to fetch account reports like pages used by agent, date, and product.
Delete List Row by IDTool to delete a specific row from a list by its unique identifier.
Delete List Rows by IDsTool to delete specific rows from a list by their IDs.
Delete ProjectTool to delete a project by its ID.
Delete ScheduleTool to delete a schedule for an agent by its agent ID.
Delete Workflow by IDTool to delete a workflow by its ID.
Download Agent ResultTool to download agent results by agent ID in CSV, TSV or JSON format.
Download List RowsTool to download list rows as CSV file.
Download usersTool to download users list in CSV format.
Download workflowsTool to download all workflows in CSV format.
Extract Structured DataTool to auto-extract structured data from a webpage including schema.
Extract Structured Data from URLTool to auto-extract structured data from a webpage URL.
Get Agent ResultTool to get the most recent result data for an agent.
Get all team membersTool to retrieve all team members (users) under an account.
Get URL RedirectsTool to get the complete redirect chain for a URL.
Get Job ResultTool to get the result data from a completed job.
Get list by IDRetrieves detailed information about a specific list by its ID.
Get List Row by IDTool to fetch a specific row by its ID from a list.
Get Page ContentTool to fetch the complete HTML content of any webpage URL.
Get Page Content with OptionsTool to fetch HTML content of a webpage with custom options including ad blocking.
Get Project by IDRetrieves complete details of a specific project by its ID, including name, description, creator information, and timestamps.
Get Redirects with OptionsTool to get the complete redirect chain of a URL with custom navigation options.
Get Agent ScheduleTool to retrieve the schedule configuration for a specific agent.
Get User by IDTool to retrieve detailed information about a user by their ID.
Get Workflow by IDRetrieves complete details of a specific workflow by its ID.
Get agent input by IDRetrieves the input configuration for a specific agent by its ID.
Update Input by Agent IDUpdates the input configuration for a specific agent in Agenty.
Download jobsTool to download all jobs in CSV format.
Download job file by IDTool to download output files by job ID.
Download Job Result by IDTool to download the agent output result by job ID.
Fetch all jobsTool to fetch all jobs under an account.
Get Job by IDRetrieves comprehensive details about a specific job including its status, progress metrics (pages processed/succeeded/failed), timing information (created/started/completed times), resource consumption (page credits), and any error messages.
Get Job Logs by IDTool to fetch logs for a given job by its ID.
List job output filesLists all output files generated by a specific job.
Start Agent JobTool to start a new agent job.
Stop Job by IDTool to stop a running job by job ID.
Clear List RowsTool to clear all rows in a list by its ID.
Create ListTool to create a new list.
Delete List by IDTool to delete a specific list by its ID.
Download listsTool to download all lists in CSV format.
Get all listsTool to retrieve all lists under an account.
Fetch List Rows by IDTool to fetch all rows in a specified list.
Update List by IDTool to update a list's name and optionally description by list ID.
Upload CSV file to ListTool to upload a CSV file to an Agenty list for bulk import of data rows.
Patch WorkflowTool to partially update a workflow by ID.
Add Agents to ProjectAdd one or more agents to an Agenty project to organize and group related agents together.
Create ProjectCreates a new project in Agenty.
Get all projectsRetrieve all projects in the authenticated user's account.
Remove Agent from ProjectRemove an agent from an Agenty project.
Scrape Webpage DataTool to scrape data from any webpage using jQuery/CSS selectors.
Toggle Agent ScheduleTool to toggle schedule on/off for an agent.
Transfer Agent OwnershipTool to transfer agent ownership to another Agenty account.
Update List RowTool to update a specific row in a list by list ID and row ID.
Update ProjectUpdate an existing project's name and description in Agenty.
Update Agent ScheduleUpdates the schedule configuration for a specific agent.
Update User by IDTool to update a user's information by user ID.
Update WorkflowTool to update an existing workflow's configuration by workflow ID.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

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
Initialize the Composio client and create a Tool Router session

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 Agenty tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Fetch all agents for my account')
        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

Why Use Composio?

AI Native Agenty Integration

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

Managed Auth

  • Built-in API key management with auto-scoping
  • Central dashboard to manage and revoke Agenty credentials
  • No hard-coding keys—per user and per environment authentication

Agent Optimized Design

  • Tools tuned for LLMs—reduced errors, improved reliability
  • Comprehensive execution logs for every scrape and automation

Enterprise Grade Security

  • RBAC controls for which agents can access Agenty
  • Scoped, least privilege access to your web data
  • Full audit trail for compliance and review

Frequently Asked Questions

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

Yes, Agenty requires you to configure your own API key credentials. 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.