Let Claude Code, Copilot CLI, Cursor, Windsurf and other AI agents manage your scheduled commands through natural language.
MCP (Model Context Protocol) is an open standard that allows AI agents to interact with external tools and services. CliBook's MCP server gives agents direct access to your scheduled commands — create, update, toggle, and monitor schedules without leaving your AI workflow.
Instead of manually opening CliBook to set up a cron job, just tell your AI agent: "Create a schedule that runs brew upgrade every Sunday at 9am" — and it handles the rest.
Add CliBook's MCP server to your AI agent in seconds.
Go to Settings > MCP Server in CliBook and click "Install to Claude Code", or manually add to ~/.claude.json:
{
"mcpServers": {
"clibook-scheduler": {
"type": "stdio",
"command": "~/.local/bin/clibook-mcp",
"args": []
}
}
}
7 tools your AI agent can use to fully manage scheduled commands.
List all scheduled commands with current status, cron expression, and execution metadata.
No parameters required.
Create a new scheduled command.
* = required. Defaults: workingDirectory (~), timeoutSeconds (300), retryCount (0), retryIntervalSeconds (60), notifyOnSuccess (false), notifyOnFailure (true).
Update an existing schedule. Only provided fields are changed.
Delete a schedule and all its execution history.
Enable or disable a schedule.
Get execution history with stdout/stderr, exit codes, and timing.
Default limit: 20.
Execute a schedule immediately and return the result.
Just tell your AI agent what you need in plain English.
"Create a schedule that runs brew update && brew upgrade every Sunday at 9am"
"List all my scheduled commands"
"Disable the database backup schedule"
"Show me the last 5 executions of my health check schedule"
"Create a schedule to run git pull in ~/projects/myapp every hour"
"Set up a daily Claude Code task at 10am to review code in ~/projects/myapp"
CliBook bundles a standalone MCP binary (clibook-mcp)
AI agents launch it as a subprocess and communicate via stdio
Communication uses the standard Model Context Protocol over JSON-RPC
Reads and writes directly to CliBook's local database
Changes appear instantly in CliBook's Scheduler UI
The MCP binary auto-updates when CliBook is updated
~/.local/bin/clibook-mcp
Download CliBook and set up MCP in under a minute.