← kamy.dev
INDIVIDUAL MCP TOOL
delete_schedule
Permanently delete a recurring schedule so it stops firing.
LIVE ENDPOINT
https://mcp.kamy.dev/mcp
Connect to this endpoint to inspect the live schema for delete_schedule and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a deletion term.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.kamy]
url = "https://mcp.kamy.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"kamy": {
"type": "http",
"url": "https://mcp.kamy.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: kamy
Remote MCP URL: https://mcp.kamy.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"kamy": {
"url": "https://mcp.kamy.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"kamy": {
"type": "http",
"url": "https://mcp.kamy.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "kamy",
"transport": "streamable-http",
"url": "https://mcp.kamy.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_templates— List Kamy's public system PDF templates.get_template_schema— Fetch the JSON Schema (exact data shape) and a copy-pasteable sample payload for a Kamy system template by slug.create_template— Create a new custom PDF template owned by this account: a name, a unique slug, a Handlebars/HTML body, and optional CSS and JSON Schema.update_template— Edit an existing custom template's DRAFT — name, html, css, schema, tags, visibility — addressed by UUID or slug.publish_template— Make a template version live for rendering.rollback_template— Revert a template after a bad release: repoints published_version at the version you name, so every subsequent render immediately serves that snapshot again.list_template_versions— List a template's immutable version snapshots, newest first, as { id, version, createdAt }.get_template_version— Fetch one template version snapshot in full — html, css, schema, createdBy, createdAt — exactly as it was frozen when that version was cut.