Scheduleit

Downloads

The scheduleit-mcp binary is a small stdio proxy that lets an MCP client (Claude Desktop, Cursor, …) talk to Scheduleit. It speaks MCP over stdin/stdout and forwards each request over HTTPS to the hosted API — see MCP integration for the full setup guide.

It has no runtime dependencies: one static binary, nothing to install alongside it.

Latest binaries

Each link serves the newest released build. Pick the one for your operating system and CPU:

PlatformArchitectureDownload
Linuxx86-64 (amd64)scheduleit-mcp-linux-amd64
LinuxARM64 (aarch64)scheduleit-mcp-linux-arm64
macOSApple Silicon (arm64)scheduleit-mcp-darwin-arm64
macOSIntel (amd64)scheduleit-mcp-darwin-amd64
Windowsx86-64 (amd64)scheduleit-mcp-windows-amd64.exe

Every build's SHA-256 is published in checksums.txt.

Install (Linux / macOS)

Download the right binary, drop it on your $PATH, and mark it executable. For example, Linux x86-64:

curl -L https://getscheduleit.app/dl/scheduleit-mcp-linux-amd64 \
  -o /usr/local/bin/scheduleit-mcp
chmod +x /usr/local/bin/scheduleit-mcp
scheduleit-mcp --version

The last line prints the build you just installed, e.g. scheduleit-mcp v0.0.1. Swap the filename for your platform's build from the table above.

On macOS, Gatekeeper may quarantine an unsigned download; clear it with xattr -d com.apple.quarantine /usr/local/bin/scheduleit-mcp (builds aren't code-signed yet).

Verify the download

Confirm the binary matches its published checksum before trusting it:

curl -LO https://getscheduleit.app/dl/checksums.txt
sha256sum --ignore-missing --check checksums.txt

sha256sum prints OK for each file it finds in the current directory. On macOS without sha256sum, use shasum -a 256 scheduleit-mcp-darwin-arm64 and compare against the matching line in checksums.txt.

Point your MCP client at it

Minimal Claude Desktop config — full instructions and other clients are on the MCP integration page:

{
  "mcpServers": {
    "scheduleit": {
      "command": "/usr/local/bin/scheduleit-mcp",
      "env": {
        "SCHEDULEIT_API_KEY":  "sk_...",
        "SCHEDULEIT_BASE_URL": "https://getscheduleit.app"
      }
    }
  }
}

Mint the SCHEDULEIT_API_KEY from a project in the operator console; the key carries the project scope your tool calls run under.