Inspect scheduled jobs, runs, durable workflows, and webhook health; run one confirmed job.
Abgeleitet aus den Transporten, die dieser Eintrag deklariert (streamable-http). Ein Client, der hier nicht steht, ist damit nicht ausgeschlossen — Forge kann ihn nur nicht bestätigen.
Die Verifizierung bestätigt die Identität des Publishers (die Inhaberschaft am Repo), nicht die Sicherheit des Codes. Der Sicherheits-Scan deckt bekannte CVEs und verdächtige Installationsskripte ab.
Aus einem echten MCP-Handshake initialize → tools/list gegen den deklarierten Endpunkt gelesen. Es wurde nie ein Tool aufgerufen — tools/list ist der lesende Introspektionsaufruf, den das Protokoll dafür vorsieht. Es spiegelt wider, was der Server in diesem Moment angeboten hat; ein gehosteter Endpunkt ist an keine Version gebunden und kann sich ohne Ankündigung ändern.
https://mcp.cron.cool/mcp10 Tools · 452 mslist_projectsList a bounded set of Croncool projects the authenticated user can access. Returns only the project id needed for follow-up calls, display name, and creation time; workflow callback configuration and secrets are excluded.List a bounded set of Croncool projects the authenticated user can access. Returns only the project id needed for follow-up calls, display name, and creation time; workflow callback configuration and secrets are excluded.
| Parameter | Typ | Beschreibung |
|---|---|---|
| limit | integer | Maximum number of projects to return (default 50, max 100) |
list_jobsList a bounded page of Croncool jobs in the authenticated organization, optionally filtered by exact project id. Returns safe scheduling metadata and target origins only; request payloads and credential-bearing URL paths, queries, fragments, or userinfo are excluded. Reuse nextCursor with the same…List a bounded page of Croncool jobs in the authenticated organization, optionally filtered by exact project id. Returns safe scheduling metadata and target origins only; request payloads and credential-bearing URL paths, queries, fragments, or userinfo are excluded. Reuse nextCursor with the same…
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectId | string | Only return jobs owned by this exact project id |
| limit | integer | Maximum number of jobs to return (default 20, max 100) |
| cursor | string | Opaque nextCursor from an earlier list_jobs call with the same project filter |
get_jobFetch a single Croncool cron job by exact id. Returns safe scheduling metadata and only the target HTTP(S) origin; request payloads and credential-bearing URL paths, queries, fragments, or userinfo are never returned. Jobs owned by another organization are reported as not found.Fetch a single Croncool cron job by exact id. Returns safe scheduling metadata and only the target HTTP(S) origin; request payloads and credential-bearing URL paths, queries, fragments, or userinfo are never returned. Jobs owned by another organization are reported as not found.
| Parameter | Typ | Beschreibung |
|---|---|---|
| jobId* | string | Job id (uuid) |
run_jobTrigger one existing Croncool job by exact id immediately, outside its schedule. This is destructive under host review policy, open-world, and non-idempotent: every call can send the configured request again and cause downstream writes, messages, billing, or third-party effects. First call get_job,…Trigger one existing Croncool job by exact id immediately, outside its schedule. This is destructive under host review policy, open-world, and non-idempotent: every call can send the configured request again and cause downstream writes, messages, billing, or third-party effects. First call get_job,…
| Parameter | Typ | Beschreibung |
|---|---|---|
| jobId* | string | Job id (uuid) of the job to run immediately |
get_job_runsFetch a bounded execution history for one exact Croncool job id, most recent first. Returns execution id, status, HTTP status, duration, and timestamp only; response bodies, errors, job request payloads, and credentials are excluded. Use this after run_job to verify the recorded outcome instead of…Fetch a bounded execution history for one exact Croncool job id, most recent first. Returns execution id, status, HTTP status, duration, and timestamp only; response bodies, errors, job request payloads, and credentials are excluded. Use this after run_job to verify the recorded outcome instead of…
| Parameter | Typ | Beschreibung |
|---|---|---|
| jobId* | string | Job id (uuid) to fetch execution history for |
| limit | integer | Maximum number of executions to return (default 20, max 100) |
list_workflowsList a bounded set of durable workflows for one exact Croncool project id with per-status run counts and most recent run time. Workflow inputs, outputs, error messages, callback configuration, and secrets are excluded.List a bounded set of durable workflows for one exact Croncool project id with per-status run counts and most recent run time. Workflow inputs, outputs, error messages, callback configuration, and secrets are excluded.
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectId* | string | Project id whose workflows should be listed (required) |
| limit | integer | Maximum number of workflows to return (default 50, max 100) |
list_workflow_runsList a bounded page of durable workflow runs for one exact Croncool project id, optionally filtered by workflow name and status. Returns only run identity, status, timings, and machine error code; workflow inputs, outputs, and error messages are excluded. Reuse nextCursor with identical filters to…List a bounded page of durable workflow runs for one exact Croncool project id, optionally filtered by workflow name and status. Returns only run identity, status, timings, and machine error code; workflow inputs, outputs, and error messages are excluded. Reuse nextCursor with identical filters to…
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectId* | string | Project id whose workflow runs should be listed (required) |
| workflowName | string | Only return runs of this workflow |
| status | string | Only return runs in this status |
| limit | integer | Maximum number of runs to return (default 20, max 100) |
| sort | string | Order of the returned runs (default newest first) |
| cursor | string | Opaque nextCursor from an earlier call with the same project, workflow, status, and sort filters |
get_workflow_runFetch one durable workflow run by exact project id and run id together with a bounded set of steps. Returns status/timing metadata and machine error codes only; workflow inputs, outputs, error messages, deployment details, and ownership fields are excluded. Cross-organization ids are reported as no…Fetch one durable workflow run by exact project id and run id together with a bounded set of steps. Returns status/timing metadata and machine error codes only; workflow inputs, outputs, error messages, deployment details, and ownership fields are excluded. Cross-organization ids are reported as no…
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectId* | string | Project id owning the run (required) |
| runId* | string | Workflow run id |
| stepLimit | integer | Maximum number of steps to return (default 50, max 200) |
list_webhook_subscriptionsList a bounded set of webhook delivery-health records in the authenticated Croncool organization, optionally filtered by exact project id. Returns endpoint origins, event filters, active state, failure counts, and delivery times. Full endpoint paths/queries, signing secrets, payloads, and ownership…List a bounded set of webhook delivery-health records in the authenticated Croncool organization, optionally filtered by exact project id. Returns endpoint origins, event filters, active state, failure counts, and delivery times. Full endpoint paths/queries, signing secrets, payloads, and ownership…
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectId | string | Only return subscriptions of this project |
| limit | integer | Maximum number of subscriptions to return (default 20, max 100) |
show_project_overviewRender a bounded overview for one known Croncool project id. Use after list_projects. Shows safe project metadata and up to 12 tenant-scoped jobs with target origins only; job request payloads, credential-bearing target paths/queries, organization fields, and workflow callback secrets are excluded.Render a bounded overview for one known Croncool project id. Use after list_projects. Shows safe project metadata and up to 12 tenant-scoped jobs with target origins only; job request payloads, credential-bearing target paths/queries, organization fields, and workflow callback secrets are excluded.
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectId* | string | Croncool project id to render |
10 von 10 Tools haben eine Beschreibung veröffentlicht.
Tool-Namen und -Beschreibungen stammen vom Publisher und werden wortgetreu als inerter Text angezeigt. Es sind die Zeichenketten, die ein MCP-Client an ein Modell übergibt, deshalb prüft Forge sie auf Prompt-Injection-Muster — jeder Befund erscheint oben beim Sicherheits-Scan. „Privilegiert“ ist ein Schlagwort-Treffer im Tool-Namen, keine Prüfung dessen, was das Tool tut: ein harmlos klingender Name kann trotzdem alles tun.
Inspect scheduled jobs, runs, durable workflows, and webhook health; run one confirmed job.
Verlinkte Namen öffnen den Forge-Index aller Einträge, bei denen dieses Tool beobachtet wurde. Alle indexierten Tools durchsuchen.
Dieser Eintrag veröffentlicht kein npm-Paket, daher hat Forge keinen Abhängigkeitsbaum dafür. Das ist eine Lücke in der Abdeckung — keine Aussage, dass er keine Abhängigkeiten hat.