Back to Apps

CueAPI
by cueapi
Coordination layer for AI agents with scheduling, verification gates, and evidence-backed outcome reporting.
0 stars
Works in:Cursorzed
Exposes:Tools
What it does
CueAPI provides a coordination layer for AI agent systems, allowing agents to schedule work across time and environments. It closes the loop on agent handoffs by requiring structured evidence (external IDs or URLs) to verify outcomes, preventing silent failures in complex agentic workflows.
Tools
cueapi_create_cue: Create recurring (cron) or one-time (at) schedules.cueapi_list_cues: List and filter scheduled cues by status.cueapi_get_cue: Retrieve detailed information for a specific cue.cueapi_fire_cue: Manually trigger a cue immediately with optional payload overrides.cueapi_update_cue: Modify a cue's schedule, callback, or payload.cueapi_pause_cue/cueapi_resume_cue: Control the active status of a cue.cueapi_delete_cue: Permanently remove a cue.cueapi_list_executions: Browse historical execution logs.cueapi_get_execution: Fetch a specific execution's state and outcome.cueapi_list_claimable_executions: Find available worker tasks filtered by agent/task.cueapi_claim_execution: Atomically claim a task for processing.cueapi_claim_next_execution: Claim the oldest available task.cueapi_execution_heartbeat: Maintain the lease on an active execution.cueapi_report_outcome: Submit a write-once outcome with verification evidence.
Installation
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"cueapi": {
"command": "npx",
"args": ["-y", "@cueapi/mcp"],
"env": {
"CUEAPI_API_KEY": "your_api_key_here"
}
}
}
}
Supported hosts
- Claude Desktop
- Cursor
- Zed
Quick install
npx -y @cueapi/mcpInformation
- Pricing
- free
- Published
- 6/30/2026
- stars
- 0
Categories
Choose your AI client and follow the steps below.
zed
Add npx -y @cueapi/mcp to settings.json context_servers with CUEAPI_API_KEY env varCursor
Add npx -y @cueapi/mcp to MCP settings with CUEAPI_API_KEY env varClaude Desktop
{"mcpServers": {"cueapi": {"command": "npx", "args": ["-y", "@cueapi/mcp"], "env": {"CUEAPI_API_KEY": "your_api_key_here"}}}}





