Reeve
Use Reeve in Claude

The tools

The three MCP tools Reeve exposes to Claude — chat, get_context, and resolve_gate.

The tools

Reeve exposes exactly three tools to Claude. You don't call these directly — you talk to Claude naturally and it calls them on your behalf. Understanding what each tool does helps you know what to ask for.

chat

Talk to your Reeve workspace. This is the main tool — Claude sends your request to Reeve and returns the reply.

chat(message, thread_id?, brand_id?)
ParameterTypeRequiredDescription
messagestringyesYour message to Reeve
thread_idstringnoConversation id from a previous chat call. Pass to continue a conversation; omit to start a new one.
brand_idstringnoScope the conversation to a specific brand. Get the id from get_context.

Returns: an object with reply (Reeve's response text), thread_id (use this on follow-ups), and attachments (any Drive URLs in the reply).

A reply may include a gate — a pending action (for example, launching paid spend or publishing content) that requires your explicit approval. When Claude sees a gate in the reply, it will surface the details and wait for you to confirm before calling resolve_gate.

chat requires an authenticated user. It cannot be called with a programmatic service credential.

get_context

Returns your Reeve workspace details: your organizations, user info, and brand list. Claude calls this when it needs to know which brands you have, so it can pass a brand_id to chat.

get_context()

No parameters.

Returns: your org(s), user info, and a list of brands — each with an id, name, org_id, and relationship (self for your own brands, competitor for tracked competitors). Pass a brand's id to chat's brand_id parameter to scope a conversation to that brand.

resolve_gate

Approve or cancel a pending gated action from a previous chat reply.

resolve_gate(thread_id, gate_id, decision)
ParameterTypeRequiredDescription
thread_idstringyesThe thread_id from the chat call that returned the gate
gate_idstringyesThe gate id from the chat reply
decisionstringyes"approve" or "cancel"

Returns: Reeve's confirmation of the outcome.

Claude will call resolve_gate only after you explicitly confirm. It will always show you the gate details and ask before proceeding.

resolve_gate with decision: "approve" commits the action — for example, it may launch ad spend or publish content. Review the gate details carefully before approving.

How they work together

Most of the time, you just talk to Claude naturally. Here's what happens under the hood:

  1. You ask Claude something (e.g., "Ask Reeve to draft a Black Friday email")
  2. Claude calls chat with your message — optionally calling get_context first if brand context is needed
  3. Reeve responds with copy, analysis, or a gated action
  4. If the reply contains a gate, Claude surfaces it and waits for your approval
  5. You say yes → Claude calls resolve_gate(thread_id, gate_id, "approve")
  6. Reeve confirms the action is done

Follow-up messages in the same conversation reuse the thread_id so Reeve maintains context.

On this page