Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Mcp Cron

    MCP Server that schedule shell command or AI prompt tasks

    13 stars
    Go
    Updated Oct 31, 2025
    automation
    claude
    cron
    cursor
    mcp
    mcp-server
    openai

    Table of Contents

    • Features
    • Installation
    • npm (recommended)
    • Claude Code
    • Cursor / Claude Desktop
    • Recommended Configuration
    • Using LiteLLM
    • Building from Source
    • Prerequisites
    • Usage
    • HTTP (Streamable HTTP)
    • stdio
    • Command Line Arguments
    • Environment Variables
    • Sleep Prevention
    • Logging
    • Available MCP Tools
    • Task Format
    • Task Status
    • Cron Expression Format
    • Development
    • Building
    • Testing
    • Acknowledgments

    Table of Contents

    • Features
    • Installation
    • npm (recommended)
    • Claude Code
    • Cursor / Claude Desktop
    • Recommended Configuration
    • Using LiteLLM
    • Building from Source
    • Prerequisites
    • Usage
    • HTTP (Streamable HTTP)
    • stdio
    • Command Line Arguments
    • Environment Variables
    • Sleep Prevention
    • Logging
    • Available MCP Tools
    • Task Format
    • Task Status
    • Cron Expression Format
    • Development
    • Building
    • Testing
    • Acknowledgments

    Documentation

    MCP Cron

    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)

    bash
    npx -y mcp-cron

    Claude Code

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

    Cursor / Claude Desktop

    json
    {
      "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:

    json
    {
      "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:

    json
    {
      "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).

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

    Building from Source

    Prerequisites

    • Go 1.24.0 or higher
    bash
    # 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)

    bash
    # 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

    json
    {
      "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

    json
    {
      "mcpServers": {
        "mcp-cron": {
          "command": "/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:

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

    Or via environment variable:

    bash
    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. update_task - Updates an existing task

    6. remove_task - Removes a task by ID

    7. run_task - Immediately executes a task by ID (for on-demand tasks or ad-hoc runs of scheduled tasks)

    8. enable_task - Enables a task so it runs on its schedule or can be triggered via run_task

    9. disable_task - Disables a task so it stops running and cannot be triggered

    10. get_task_result - Gets execution results for a task (latest by default, or recent history with limit)

    Task Format

    Tasks have the following structure:

    json
    {
      "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"
    }

    For shell command tasks, use the command field to specify the command to execute.

    For AI tasks, use the prompt field to specify what the AI should do.

    The type field can be either shell_command (default) or AI.

    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:

    code
    ┌───────────── 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

    bash
    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

    • modelcontextprotocol/go-sdk - Official Go SDK for the Model Context Protocol
    • robfig/cron - Cron expression parsing for Go

    Similar MCP

    Based on tags & features

    • MC

      Mcpjungle

      Go·
      617
    • YU

      Yutu

      Go·
      317
    • MC

      Mcp Cyclops

      Go·
      29
    • MC

      Mcp K8s

      Go·
      128

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcpjungle

      Go·
      617
    • YU

      Yutu

      Go·
      317
    • MC

      Mcp Cyclops

      Go·
      29
    • MC

      Mcp K8s

      Go·
      128

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k