tickstem/mcp

📊 Monitoring
0 Views
0 Installs

🏎️ ☁️ 🍎 🪟 🐧 - HTTP uptime monitoring, heartbeat (dead-man's switch) monitoring, cron job scheduling, and email verification. Single API key, per-tool quota tracking. Install: go install github.com/tickstem/mcp/cmd/tsk-mcp@latest.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "tickstem-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "tickstem-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

tickstem/mcp

Glama smithery badge

MCP server for Tickstem — exposes cron job scheduling, uptime monitoring, heartbeat monitoring, and email verification as native tools for AI coding assistants (Claude, Cursor, Copilot, and any MCP-compatible agent).

Let your AI assistant register cron jobs, create uptime monitors with response assertions, manage heartbeat monitors, verify email addresses, and query results — while you write the app code.

Install

Download a pre-built binary (no Go required):

PlatformBinary
macOS (Apple Silicon)tsk-mcp-darwin-arm64
macOS (Intel)tsk-mcp-darwin-amd64
Linux (x86-64)tsk-mcp-linux-amd64
Linux (ARM64)tsk-mcp-linux-arm64
Windows (x86-64)tsk-mcp-windows-amd64.exe

Download from Releases, make executable, and place on your PATH:

# macOS / Linux example
chmod +x tsk-mcp-darwin-arm64
mv tsk-mcp-darwin-arm64 /usr/local/bin/tsk-mcp

Or install with Go:

go install github.com/tickstem/mcp/cmd/tsk-mcp@latest

Quick start

export TICKSTEM_API_KEY=tsk_your_key_here
tsk-mcp

The server speaks the Model Context Protocol over stdio — connect it to any MCP-compatible client.

Claude Code

Add to your ~/.claude/claude_desktop_config.json (or equivalent):

{
  "mcpServers": {
    "tickstem": {
      "command": "tsk-mcp",
      "env": {
        "TICKSTEM_API_KEY": "tsk_your_key_here"
      }
    }
  }
}

Available tools

Cron jobs

ToolDescription
list_jobsList all cron jobs in the account
get_jobGet a cron job by ID
register_jobRegister a new cron job (name, schedule, endpoint)
update_jobUpdate an existing job — only provided fields change
pause_jobPause a job so it no longer fires
resume_jobResume a paused or failing job
delete_jobPermanently delete a job and its execution history
list_executionsList execution history for a job, most recent first

Uptime monitoring

ToolDescription
list_monitorsList all monitors — status, URL, interval, SSL expiry, assertions
create_monitorCreate a monitor with optional response assertions (status code, response time, body)
get_monitorGet a monitor by ID
pause_monitorPause a monitor so it stops polling
resume_monitorResume a paused monitor
delete_monitorPermanently delete a monitor and its check history
list_monitor_checksList recent checks — status, HTTP code, duration, error, SSL expiry

Response assertions

create_monitor accepts an assertions parameter — a JSON array of conditions that must all pass for a check to be considered up. When assertions are set they replace the default 2xx/3xx logic.

[
  { "source": "status_code",   "comparison": "eq",       "target": "200"              },
  { "source": "response_time", "comparison": "lt",       "target": "2000"             },
  { "source": "body",          "comparison": "contains", "target": "\"status\":\"ok\"" }
]
SourceValid comparisonsTarget
status_codeeq ne lt lte gt gteinteger string
response_timeeq ne lt lte gt gteinteger string (ms)
bodyeq ne contains not_containsplain string

Heartbeat monitoring

ToolDescription
list_heartbeatsList all heartbeats — status, token, interval, grace window, last ping time
create_heartbeatCreate a heartbeat monitor (dead-man's switch)
get_heartbeatGet a heartbeat by ID
update_heartbeatUpdate name, interval, or grace window
pause_heartbeatSuppress alerts during planned downtime
resume_heartbeatResume alerting after a pause
delete_heartbeatPermanently delete a heartbeat and its ping history
ping_heartbeatRecord a successful job run — no API key needed, token is the credential
list_heartbeat_pingsList recent pings for a heartbeat, most recent first

Email verification

ToolDescription
verify_emailCheck syntax, MX records, disposable domain, and role-based prefix
list_verify_historyList past verification results for the account

Environment variables

VariableRequiredDescription
TICKSTEM_API_KEYYesAPI key from app.tickstem.dev
TICKSTEM_BASE_URLNoOverride API base URL (e.g. http://localhost:8080/v1 for local dev)

Local development

export TICKSTEM_API_KEY=tsk_your_key_here
export TICKSTEM_BASE_URL=http://localhost:8080/v1
go run ./cmd/tsk-mcp

SDKs

The MCP server handles infrastructure management from your AI assistant. For application code, use the SDK that matches your language:

LanguageInstallDocs
Pythonpip install tickstemgithub.com/tickstem/python
Go (cron)go get github.com/tickstem/cronpkg.go.dev
Go (uptime)go get github.com/tickstem/uptimepkg.go.dev
Go (heartbeat)go get github.com/tickstem/heartbeatpkg.go.dev
Go (verify)go get github.com/tickstem/verifypkg.go.dev
Node.jsnpm install @tickstem/crongithub.com/tickstem/node

All SDKs use the same API key.

Get an API key

app.tickstem.dev — free tier includes 1,000 cron executions, 5 uptime monitors, 5 heartbeat monitors, and 500 email verifications per month.

License

MIT

Related MCP Servers

aayushmdesai/mcp-dotnet-diagnostics

🏠 🍎 🐧 - Live .NET runtime diagnostics for AI assistants. Ask Claude to diagnose memory leaks, GC pressure, LOH fragmentation, and thread starvation in any running .NET process — no code changes required. Install: dotnet tool install -g mcp-dotnet-diagnostics

📊 Monitoring0 views
adanb13/cirdan

🐍 🏠 🍎 🪟 🐧 - AI infrastructure cartographer & MCP server: fingerprints, graphs, and watches the live infrastructure an agent can reach (Docker, Kubernetes, cloud, IaC) and detects incidents.

📊 Monitoring0 views
agentkitai/agentlens

📇 🏠 ☁️ 🍎 🪟 🐧 - Tamper-evident observability for AI agents: a SHA-256 hash-chained audit log with chain verification and signed export (EU AI Act Art. 12). Instrument any agent with zero code via npx -y @agentlensai/mcp; also ingests OpenTelemetry GenAI traces.

📊 Monitoring0 views
alilxxey/openobserve-community-mcp

🐍 🏠 🍎 🪟 🐧 - Read-only MCP server for OpenObserve Community Edition via REST API. Search logs, traces, stream schemas, and dashboards without requiring the Enterprise license.

📊 Monitoring0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it →
★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.