Workable MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Workable MCP or direct API to post jobs, manage candidates, update employee records, and automate HR workflows through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Workable Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Workable 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
Create EmployeeTool to create an employee in your Workable account.
Delete DepartmentTool to delete a department.
Delete SubscriptionTool to unsubscribe from an event by deleting a webhook subscription.
Get AccountTool to return the specified account.
Get AccountsRetrieves all Workable accounts (organizations) accessible to the authenticated user.
Get Background Check PackagesTool to retrieve a list of available background check packages from a specified provider.
Get Background Check ProvidersRetrieves a list of background check providers integrated with your Workable account.
Get CandidatesRetrieve a list of candidates across all jobs in the organization.
Get EmployeeTool to retrieve detailed information for a specific employee by ID.
Get EventsRetrieve a collection of scheduled events (calls, interviews, meetings) from the Workable account.
Get JobsRetrieves a paginated list of jobs from your Workable account.
Get Legal EntitiesTool to retrieve a collection of your account legal entities.
Get MembersRetrieve a paginated list of Workable account members with their roles and permissions.
Get recruitersRetrieves external recruiters from your Workable account.
Get RequisitionsTool to retrieve a collection of requisitions in the account.
Get StagesTool to retrieve a collection of your recruitment pipeline stages.
Get SubscriptionsRetrieves all webhook subscriptions configured in your Workable account.
List Custom AttributesTool to retrieve all custom attributes configured in the Workable account.
List DepartmentsTool to retrieve all departments from your Workable account.
List Disqualification ReasonsTool to retrieve a collection of account's disqualification reasons.
List Employee FieldsTool to retrieve a collection of your account's employee field definitions.
List EmployeesTool to retrieve a collection of account employees.
List Permission SetsTool to retrieve a collection of your account permission sets.
List Public JobsTool to return a collection of public jobs for an account.
List Public LocationsTool to retrieve a collection of locations where a Workable account has public job postings.
List Time Off BalancesRetrieves all time off balances for an employee across all time off categories.
List Time Off CategoriesTool to retrieve all time off categories configured for your account.
List Work SchedulesTool to retrieve a collection of work schedules configured in your Workable account.
Update Background Check StatusUpdates the status and results of an existing background check in a candidate's timeline.
Merge DepartmentTool to merge a department into another.
Create DepartmentTool to create a department in your account.
Enable MemberEnable (restore) a deactivated Workable account member to active status.
Invite MemberTool to invite a member to your Workable account.
Update DepartmentTool to update an existing department in your account.
Update MemberUpdates a Workable account member's details including roles, name, headline, email, and collaboration rules.
Update EmployeeTool to update an existing employee in Workable.
Upload Employee DocumentsTool to upload a list of documents for a specific employee.
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 Workable tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('List all candidates for open positions')
        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 Workable Integration

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

Managed Auth

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

Frequently Asked Questions

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

Yes, Workable 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.