> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sumvin.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Revoke a mandate or disconnect an agent

> Withdraw a Stamped Mandate, disconnect an agent, or sign out of the CLI.

Three separate things can be withdrawn, and each stops something different.

<Steps>
  <Step title="Revoke a Stamped Mandate">
    Revoking a mandate withdraws its authority, and withdraws every credential already issued from it — anything currently relying on it stops working. This cannot be undone: a revoked mandate never becomes active again.

    <Tabs>
      <Tab title="MCP">
        Ask your agent to revoke it. Find the mandate first (your agent can look it up for you), confirm it's the one you mean, and then revoke it — the tool behind this is `pint_revoke`.
      </Tab>

      <Tab title="CLI">
        ```bash theme={null}
        sumvin pint list
        sumvin pint revoke <pint_id>
        ```
      </Tab>
    </Tabs>

    Revoking an already-revoked mandate isn't a no-op — it comes back as an error telling you it's already withdrawn, which means the earlier revocation is still in force.
  </Step>

  <Step title="Disconnect an agent">
    Disconnecting an agent stops it reaching your Sumvin account, so it can't act for you any more.

    To disconnect Claude, ChatGPT or any other connected assistant, remove the Sumvin connector from that agent's own settings. See [Connect your agent](/get-started/connect) for where that lives on each client.

    <Warning>
      Disconnecting an agent doesn't revoke the Stamped Mandates it asked for. They stay valid until they expire or you revoke them. Revoke them separately, as in the step above.
    </Warning>
  </Step>

  <Step title="Sign out the CLI">
    ```bash theme={null}
    sumvin logout
    ```

    This removes your access token from your machine and, where possible, revokes it on the server too. It's safe to run more than once.
  </Step>
</Steps>

**Coming soon:** a single list of every agent connected to your account, where you can disconnect any of them.

## See also

* [Stamped Mandates](/concepts/stamped-mandates) — what a mandate grants, and what revoking one takes away.
* [Agent identities](/concepts/agent-identities) — how each connection is tracked separately.

<Tip>**Try asking your agent:** "Revoke the mandate you're using for grocery orders."</Tip>
