Job ManagementRead-only

Get Job

get_job

Get current status and progress of a specific sync job. Poll this after trigger_sync to track completion.

Try asking

Did my last sync finish, and how many rows did it write?

Parameters

ParameterTypeRequiredDescription
workspaceIdstringrequiredWorkspace ID — get from list_workspaces. Portal workspaces are valid here when you manage them (look for `isInherited: true` in list_workspaces).
feedIdstringrequiredFeed ID — get from list_feeds
jobIdstringrequiredJob ID — get from trigger_sync or list_jobs

Example call

The tool call an MCP client sends (required arguments shown with placeholder values).

{
"tool": "get_job",
"arguments": {
"workspaceId": "workspaceId_123",
"feedId": "feedId_123",
"jobId": "jobId_123"
}
}

Use this tool in

Related Job Management tools