Ashby Integration for AI Agents

Equip your AI agents with Ashby MCP or direct API to automate job postings, manage candidates, schedule interviews, update hiring pipelines, and surface recruiting insights through natural language.
Ashby Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Supported Tools

Tools
Add Candidate TagAdd a tag to a candidate.
Change Application SourceChange the source attribution of an application.
Change Application StageMove an application to a different interview stage.
Create ApplicationCreate a new application for a candidate to a specific job.
Create CandidateCreate a new candidate in the system.
Create Candidate TagCreate a new candidate tag.
Create DepartmentCreate a new department.
Create JobCreate a new job opening.
Get API Key InfoRetrieve information about the current API key, including associated organization, user details, and permissions.
Get Application InfoRetrieve detailed information about a specific application by its ID.
Get Candidate InfoRetrieve detailed information about a specific candidate by their ID.
Get Department InfoRetrieve detailed information about a specific department by its ID.
Get Interview InfoRetrieve detailed information about a specific interview type by its ID.
Get Job InfoRetrieve detailed information about a specific job by its ID.
Get Job Posting InfoRetrieve detailed information about a specific job posting by its ID.
Get Location InfoRetrieve detailed information about a specific location by its ID.
Get Opening InfoRetrieve detailed information about a specific opening (job requisition) by its ID.
Get User InfoRetrieve detailed information about a specific user by their ID.
List Application FeedbackRetrieve all feedback submissions for an application.
List Application HistoryRetrieve the complete history of stage transitions for an application.
List ApplicationsRetrieve a list of applications.
List ApprovalsRetrieve a list of approvals (offer approvals, job approvals, etc.
List Archive ReasonsRetrieve a list of all archive reasons.
List Candidate NotesRetrieve all notes for a specific candidate.
List Candidate ProjectsRetrieve all projects associated with a candidate.
List CandidatesRetrieve a list of candidates.
List Candidate TagsRetrieve a list of all candidate tags.
List Close ReasonsRetrieve a list of all close reasons for jobs and openings.
List Communication TemplatesRetrieve a list of all communication templates.
List Custom FieldsRetrieve a list of all custom field definitions.
List DepartmentsRetrieve a list of all departments in the organization.
List Feedback Form DefinitionsRetrieve a list of all feedback form definitions.
List Interviewer PoolsRetrieve a list of all interviewer pools.
List Interview PlansRetrieve a list of interview plans.
List InterviewsRetrieve a list of interviews.
List Interview SchedulesRetrieve a list of interview schedules.
List Interview Stage GroupsRetrieve a list of interview stage groups.
List Job BoardsRetrieve a list of job boards.
List Job PostingsRetrieve a list of job postings.
List JobsRetrieve a list of jobs.
List Job TemplatesRetrieve a list of job templates.
List LocationsRetrieve a list of all locations.
List OffersRetrieve a list of job offers.
List OpeningsRetrieve a list of openings (job requisitions).
List ProjectsRetrieve a list of all projects.
List SourcesRetrieve a list of all candidate sources.
List Source Tracking LinksRetrieve a list of all source tracking links.
List Survey Form DefinitionsRetrieve a list of all survey form definitions.
List UsersRetrieve a list of all users in the organization.
Search CandidatesSearch for candidates by email or name.
Search JobsSearch for jobs by title.
Search ProjectsSearch for projects by title.
Search UsersSearch for users by email or name.
Set Job StatusSet the status of a job (Open, Closed, Draft).
Update ApplicationUpdate custom fields or other properties of an application.
Update CandidateUpdate candidate information such as name, position, company, or school.
Update DepartmentUpdate department information such as name.
Update JobUpdate job details such as title and other properties.
Update Job PostingUpdate job posting details such as title or listing status.

Connect Ashby MCP Tool with your Agent

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

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('List all open engineering job postings in Ashby')
        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

Connect Ashby API Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio_openai
Install the Composio SDK

Initialize Composio and Create Tool Router Session

python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
Import and initialize Composio client, then create a Tool Router session

Execute Ashby Tools via Tool Router with Your Agent

python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'List all open engineering job postings in Ashby'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
Get tools from Tool Router session and execute Ashby actions with your Agent

Why Use Composio?

AI Native Ashby Integration

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

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Ashby 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 Ashby
  • Scoped, least privilege access to Ashby resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

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

Yes, Ashby requires you to configure your own Basic Auth credentials. Once set up, Composio handles secure credential storage and authentication 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
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
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.