Medium Risk

cantrip_review_resolve

Resolve an open escalation with a resolution message. Pass project to override .cantrip.json — useful in cloud-hosted or multi-project contexts.

How to control cantrip_review_resolve ↓

What cantrip_review_resolve does on Cantrip

AI agents use cantrip_review_resolve to create or update resources in Cantrip — usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your Cantrip environment.

ParameterTypeRequiredDescription
id string Yes Escalation ID
project string Project slug — overrides .cantrip.json. Required in environments where cantrip_connect cannot write to the filesystem.
resolution string Yes Resolution text explaining the decision

Parameters from the server's own tool schema.

Medium Risk

Why cantrip_review_resolve needs a policy

The tool creates or updates an escalation record by applying a resolution, which is a data modification. It does not execute arbitrary code, delete data irreversibly, or move money. While resolving an escalation could have downstream GTM consequences, the core operation is a state-change write to a data record.

From the tool's definition Tool description states 'Resolve an open escalation with a resolution message' — this modifies the state of an escalation record from open to resolved, which is a reversible write operation on data within the Cantrip GTM system.

Documented attack patterns abuse exactly the kind of access cantrip_review_resolve gives an agent:

How to control cantrip_review_resolve

PolicyLayer is an MCP gateway — it sits between your AI agents and Cantrip, and nothing reaches the server without passing your rules. This is the rule we recommend for cantrip_review_resolve:

policy.json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "cantrip_review_resolve": {
      "limits": [
        {
          "counter": "cantrip_review_resolve_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}

cantrip_review_resolve stays usable, but capped — an agent stuck in a loop can't make hundreds of changes a minute. Everything else on the server is denied unless you say otherwise.

  1. Create a free account and register Cantrip — nothing to install.
  2. Add this policy — paste it, or build it visually.
  3. Point your MCP client (Claude, Cursor, anything) at your gateway URL.
LIMIT THIS TOOL →

Free to start. No card required.

Related tools and policies

Go deeper

Questions about cantrip_review_resolve

What does the cantrip_review_resolve tool do? +

Resolve an open escalation with a resolution message. Pass project to override .cantrip.json — useful in cloud-hosted or multi-project contexts. It is categorised as a Write tool in the Cantrip MCP Server, which means it can create or modify data. Consider rate limits to prevent runaway writes.

What parameters does cantrip_review_resolve accept? +

cantrip_review_resolve accepts 3 parameters: id, project, resolution. Required: id, resolution. The full parameter table on this page comes from the server's own tool schema.

How do I enforce a policy on cantrip_review_resolve? +

Register the Cantrip MCP server in PolicyLayer and add a rule for cantrip_review_resolve: allow, deny, rate-limit, or require approval. Point your MCP client at the PolicyLayer proxy URL and the rule is enforced on every call, before it reaches Cantrip. Nothing to install.

What risk level is cantrip_review_resolve? +

cantrip_review_resolve is a Write tool with medium risk. Write tools should be rate-limited to prevent accidental bulk modifications.

Can I rate-limit cantrip_review_resolve? +

Yes. Add a rate_limit block to the cantrip_review_resolve rule in your PolicyLayer policy. For example, setting max: 10 and window: 60 limits the tool to 10 calls per minute. Rate limits are tracked per agent session and reset automatically.

How do I block cantrip_review_resolve completely? +

Set action: deny in the PolicyLayer policy for cantrip_review_resolve. The AI agent will receive a policy violation error and cannot call the tool. You can also include a reason field to explain why the tool is blocked.

What MCP server provides cantrip_review_resolve? +

cantrip_review_resolve is provided by the Cantrip MCP server (mcp-server-cantrip). PolicyLayer sits as a proxy in front of this server to enforce policies before tool calls reach the server.

Enforce policy on every Cantrip tool call.

Start from Cantrip, add the rest of your stack, and see everything your agents can call. Then put policy on all of it.

Free to start. No card required.

19 Cantrip tools catalogued and risk-classified — across an index of 43,000+ MCP servers.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.