casky-mcp-wrapper

A thin MCP server fronting Casky's Platform API v1. Built on Vercel's mcp-handler.

Status

Last checked: 8/1/2026, 4:43:09 PM

Connect Hermes Agent (or any MCP client)

MCP endpoint: https://<this-deployment>/api/mcp

Add this to ~/.hermes/config.yaml:

mcp_servers:
  casky-platform:
    url: "https://<this-deployment>/api/mcp"
    headers:
      Authorization: "Bearer ${MCP_WRAPPER_AUTH_TOKEN}"   # only if one is configured

Tools exposed

ToolCasky routeWhat it's for
list_plansGET /api/v1/plansFind a plan_id + skill_slug to run.
create_runPOST /api/v1/runsStarts a run — returns run_id + a reporting JWT. Does not execute the skill.
list_runsGET /api/v1/runsPoll status of runs created via create_run.

No findings-read tool — there's no GET /api/v1/runs/{id} route yet. Findings are reported by the runner via a separate, non-v1 endpoint.

Endpoints