MCP.so
ログイン
サーバー

MCP Cron

@jolks

MCP server for scheduling and running AI prompts, HTTP/webhook requests, and shell commands

Model Context Protocol (MCP) server for scheduling and managing tasks through a standardized API. The server provides task scheduling capabilities supporting both shell commands and AI-powered tasks, all accessible via the MCP protocol.

Features

  • Schedule shell command or prompt to AI tasks using cron expressions
  • AI can have access to MCP servers
  • Manage tasks via MCP protocol
  • Task execution with command output capture
  • Task persistence across restarts (SQLite)
  • Multi-instance safe — multiple instances can share the same database without duplicate execution
  • Support multiple isolated instances with different --db-path

Installation

npm (recommended)

npx -y mcp-cron

Claude Code

claude mcp add mcp-cron -- npx -y mcp-cron

Cursor / Claude Desktop

{
  "mcpServers": {
    "mcp-cron": {
      "command": "npx",
      "args": ["-y", "mcp-cron", "--transport", "stdio"]
    }
  }
}

Recommended Configuration

A more complete setup with AI provider, model selection, and sleep prevention:

{
  "mcpServers": {
    "mcp-cron": {
      "command": "npx",
      "args": [
        "-y", "mcp-cron",
        "--transport", "stdio",
        "--prevent-sleep",
        "--ai-provider", "anthropic",
        "--ai-model", "claude-sonnet-4-5-20250929"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "your-api-key"
      }
    }
  }
}

Using LiteLLM

To route AI tasks through a LiteLLM proxy:

{
  "mcpServers": {
    "mcp-cron": {
      "command": "npx",
      "args": [
        "-y", "mcp-cron",
        "--transport", "stdio",
        "--prevent-sleep",
        "--ai-base-url", "https://litellm.yourcompany.com",
        "--ai-model", "claude-sonnet-4-5-20250929"
      ],
      "env": {
        "MCP_CRON_AI_API_KEY": "sk-your-litellm-key"
      }
    }
  }
}

The --ai-model value should match a model name in your LiteLLM proxy config. LiteLLM exposes an OpenAI-compatible API, so --ai-provider can be omitted (defaults to openai). When a custom base URL is set, mcp-cron automatically uses the Chat Completions API instead of the Responses API. The Responses API is only used for direct OpenAI (api.openai.com) and Azure OpenAI (*.openai.azure.com) endpoints.

See Command Line Arguments and Environment Variables for all available options.

Building from Source

Prerequisites

  • Go 1.24.0 or higher
# Clone the repository
git clone https://github.com/jolks/mcp-cron.git
cd mcp-cron

# Build the application as mcp-cron binary
go build -o mcp-cron cmd/mcp-cron/main.go

Usage

The server supports two transport modes:

  • HTTP (Streamable HTTP): Default HTTP-based transport for browser and network clients
  • stdio: Standard input/output transport for direct piping and inter-process communication
ClientConfig File Location
Cursor~/.cursor/mcp.json
Claude Desktop (Mac)~/Library/Application Support/Claude/claude_desktop_config.json
Claude Desktop (Windows)%APPDATA%\Claude\claude_desktop_config.json

HTTP (Streamable HTTP)

# Start the server with Streamable HTTP transport (default mode)
# Default to localhost:8080
./mcp-cron

# Start with custom address and port
./mcp-cron --address 127.0.0.1 --port 9090

Config file example

{
  "mcpServers": {
    "mcp-cron": {
      "url": "http://localhost:8080"
    }
  }
}

stdio

The stdio transport is particularly useful for:

  • Direct piping to/from other processes
  • Integration with CLI tools
  • Testing in environments without HTTP
  • Docker container integration

Upon starting Cursor IDE and Claude Desktop, it will automatically start the server

Config file example

{
  "mcpServers": {
    "mcp-cron": {
      "command": "<path to where mcp-cron binary is located>/mcp-cron",
      "args": ["--transport", "stdio"]
    }
  }
}

Command Line Arguments

The following command line arguments are supported:

ArgumentDescriptionDefault
--addressThe address to bind the server tolocalhost
--portThe port to bind the server to8080
--transportTransport mode: http or stdiohttp
--log-levelLogging level: debug, info, warn, error, fatalinfo
--log-fileLog file pathstdout
--versionShow version information and exitfalse
--ai-providerAI provider: openai or anthropicopenai
--ai-base-urlCustom base URL for OpenAI-compatible endpoints (e.g. Ollama, vLLM, Groq, LiteLLM)Not set
--ai-modelAI model to use for AI tasksgpt-4o
--ai-max-iterationsMaximum iterations for tool-enabled AI tasks20
--mcp-config-pathPath to MCP configuration file~/.cursor/mcp.json
--db-pathPath to SQLite database for result history~/.mcp-cron/results.db
--prevent-sleepPrevent system from sleeping while mcp-cron is running (macOS and Windows)false
--poll-intervalHow often to check for due tasks1s

Environment Variables

The following environment variables are supported:

Environment VariableDescriptionDefault
MCP_CRON_SERVER_ADDRESSThe address to bind the server tolocalhost
MCP_CRON_SERVER_PORTThe port to bind the server to8080
MCP_CRON_SERVER_TRANSPORTTransport mode: http or stdiohttp
MCP_CRON_SERVER_NAMEDeprecated — ignored; the server name is fixed to ensure self-reference detection works correctly-
MCP_CRON_SERVER_VERSIONDeprecated — ignored; version is set at build time via ldflags-
MCP_CRON_SCHEDULER_DEFAULT_TIMEOUTDefault timeout for task execution10m
MCP_CRON_LOGGING_LEVELLogging level: debug, info, warn, error, fatalinfo
MCP_CRON_LOGGING_FILELog file pathstdout
MCP_CRON_AI_PROVIDERAI provider: openai or anthropicopenai
MCP_CRON_AI_BASE_URLCustom base URL for OpenAI-compatible endpoints (e.g. Ollama, vLLM, Groq, LiteLLM)Not set
MCP_CRON_AI_API_KEYGeneric fallback API key (used when provider-specific key is not set)Not set
OPENAI_API_KEYOpenAI API key for AI tasksNot set
ANTHROPIC_API_KEYAnthropic API key for AI tasksNot set
MCP_CRON_ENABLE_OPENAI_TESTSEnable OpenAI integration testsfalse
MCP_CRON_AI_MODELLLM model to use for AI tasksgpt-4o
MCP_CRON_AI_MAX_TOOL_ITERATIONSMaximum iterations for tool-enabled tasks20
MCP_CRON_MCP_CONFIG_FILE_PATHPath to MCP configuration file~/.cursor/mcp.json
MCP_CRON_STORE_DB_PATHPath to SQLite database for result history~/.mcp-cron/results.db
MCP_CRON_PREVENT_SLEEPPrevent system from sleeping while mcp-cron is running (macOS and Windows)false
MCP_CRON_POLL_INTERVALHow often to check for due tasks (Go duration format)1s

Sleep Prevention

On laptops, the system may go to sleep and prevent scheduled tasks from running on time. Use the --prevent-sleep flag to keep the system awake while mcp-cron is running:

mcp-cron --prevent-sleep --transport stdio

Or via environment variable:

MCP_CRON_PREVENT_SLEEP=true mcp-cron --transport stdio
PlatformMechanismNotes
macOScaffeinatePrevents idle sleep; automatically cleans up on exit
WindowsSetThreadExecutionStatePrevents idle sleep; automatically cleans up on exit
LinuxNot supportedLinux servers typically do not auto-sleep

Note: This prevents idle sleep only. It does not prevent sleep from closing the laptop lid or pressing the power button.

Logging

When running with the default HTTP transport, logs are output to the console.

When running with stdio transport, logs are redirected to a mcp-cron.log log file to prevent interference with the JSON-RPC protocol:

  • Log file location: Same location as mcp-cron binary.
  • Task outputs, execution details, and server diagnostics are written to this file.
  • The stdout/stderr streams are kept clean for protocol messages only.

Available MCP Tools

The server exposes several tools through the MCP protocol:

  1. list_tasks - Lists all tasks (scheduled and on-demand)
  2. get_task - Gets a specific task by ID
  3. add_task - Adds a new shell command task (provide schedule for recurring, or omit for on-demand)
  4. add_ai_task - Adds a new AI (LLM) task with a prompt (provide schedule for recurring, or omit for on-demand)
  5. add_http_task - Adds a new HTTP (webhook) task that issues an HTTP request to a url (provide schedule for recurring, or omit for on-demand)
  6. update_task - Updates an existing task
  7. remove_task - Removes a task by ID
  8. run_task - Executes a task by ID, waits for completion, and returns the result (for on-demand tasks or ad-hoc runs of scheduled tasks)
  9. enable_task - Enables a task so it runs on its schedule or can be triggered via run_task
  10. disable_task - Disables a task so it stops running and cannot be triggered
  11. get_task_result - Gets execution results for a task (latest by default, or recent history with limit)
  12. query_task_result - Runs a read-only SQL query against the database (SELECT only, capped at 1000 rows)

Task Format

Tasks have the following structure:

{
  "id": "task_a3f7b2c9e1d04f68",
  "name": "Example Task",
  "schedule": "0 */5 * * * *",
  "command": "echo 'Task executed!'",
  "prompt": "Analyze yesterday's sales data and provide a summary",
  "type": "shell_command",
  "description": "An example task that runs every 5 minutes",
  "enabled": true,
  "lastRun": "2025-01-01T12:00:00Z",
  "nextRun": "2025-01-01T12:05:00Z",
  "status": "completed",
  "createdAt": "2025-01-01T00:00:00Z",
  "updatedAt": "2025-01-01T12:00:00Z"
}

The type field can be shell_command (default), AI, or http. The fields that apply depend on the type:

  • shell_commandcommand: the shell command to execute.
  • AIprompt: what the AI should do.
  • httpurl (required), method (defaults to POST), headers (JSON object of string→string), and body (request body string). Created via add_http_task.

For HTTP tasks, the result row reuses the existing columns:

Result fieldMeaning for HTTP tasks
exit_codeHTTP status code (0 if no response was received)
outputResponse body preview (capped at 8 KiB, suffixed ... (truncated))
errorTransport error, build-request error, or non-2xx status: N <reason>
durationRound-trip latency
urlThe request URL

This keeps query_task_result queries uniform — e.g. SELECT COUNT(*) FROM results WHERE task_id='x' AND exit_code >= 200 AND exit_code < 300 counts successful HTTP calls.

Scheduled vs on-demand tasks:

  • Scheduled: Provide a schedule (cron expression) — the task runs automatically on that schedule.
  • On-demand: Omit schedule — the task sits idle until triggered via run_task.

run_task also works on scheduled tasks for ad-hoc execution outside their normal schedule. After execution, scheduled tasks resume their normal schedule; on-demand tasks return to idle.

Task Status

The tasks can have the following status values:

  • pending - Task has not been run yet
  • running - Task is currently running
  • completed - Task has successfully completed
  • failed - Task has failed during execution
  • disabled - Task is disabled and won't run on schedule

Cron Expression Format

Cron expressions are required for scheduled tasks and omitted for on-demand tasks. The scheduler uses the github.com/robfig/cron/v3 library for parsing. The format includes seconds:

┌───────────── second (0 - 59) (Optional)
│ ┌───────────── minute (0 - 59)
│ │ ┌───────────── hour (0 - 23)
│ │ │ ┌───────────── day of the month (1 - 31)
│ │ │ │ ┌───────────── month (1 - 12)
│ │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday)
│ │ │ │ │ │
│ │ │ │ │ │
* * * * * *

Examples:

  • 0 */5 * * * * - Every 5 minutes (at 0 seconds)
  • 0 0 * * * * - Every hour
  • 0 0 0 * * * - Every day at midnight
  • 0 0 12 * * MON-FRI - Every weekday at noon

Development

Building

go build -o mcp-cron cmd/mcp-cron/main.go

Testing

See docs/testing.md for the full testing guide, including integration tests and AI task tests.

Acknowledgments

「その他」の他のコンテンツ