hr
Workable MCP Integration for Vercel AI SDK
Connect Workable to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Workable to Vercel AI SDK
Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.
Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with
--write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.
Workable MCP Config for Vercel AI SDK
Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
{
"mcpServers": {
"kosmokrator-workable": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=workable",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=workable --write=deny Why Use KosmoKrator Here
Expose only Workable instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Workable Tools Visible to Vercel AI SDK
Vercel AI SDK sees stable MCP tool names generated from the Workable integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__workable__workable_list_jobs | workable.workable_list_jobs | Read | List jobs from your Workable account. Optionally filter by state (published, draft, closed, archived). Returns paginated results with job titles, shortcodes, and statuses. |
integration__workable__workable_get_job | workable.workable_get_job | Read | Get full details for a specific Workable job by its shortcode. Returns title, description, department, location, employment type, salary, and application counts. |
integration__workable__workable_create_job | workable.workable_create_job | Write | Create a new job posting in Workable. Specify the title, description, department, and employment type. The job is created in draft state by default. |
integration__workable__workable_list_candidates | workable.workable_list_candidates | Read | List candidates for a specific Workable job. Returns paginated results with candidate names, emails, stages, and applied dates. |
integration__workable__workable_get_candidate | workable.workable_get_candidate | Read | Get full details for a specific Workable candidate by ID. Returns profile info, resume, cover letter, application stage, and activity history. |
integration__workable__workable_list_members | workable.workable_list_members | Read | List all team members in your Workable account, including recruiters and hiring managers. Returns names, emails, and roles. |
integration__workable__workable_get_current_user | workable.workable_get_current_user | Read | Get the profile of the currently authenticated Workable user. Useful for verifying credentials and identifying who the API is acting as. |