@Claude, the provisioned identity does not apply. DMs are one-to-one only; group DMs aren’t supported. A DM has no channel to scope it to, so a DM session runs on the individual’s own claude.ai account instead, with their personal connectors. Work Claude does within a DM is attributed to that user; for example, a pull request opened from a DM lists the author as the user who asked for it. Admins can disable DMs organization-wide; see Allow or disable direct messages.
How Claude behaves in channels (its standing instructions, plugins, and channel memory) is configured separately from its identity; see custom instructions, plugins, and memory for more information.
- Channel sessions: the architecture, Agent Proxy, and how access and identity work
- Direct message channels: how a DM differs, and how it compares to Claude Code in Slack
Channel sessions
When Claude works on a channel task, three systems are involved:- The ask happens in your Slack workspace, when a user tags Claude to do something or a scheduled task starts.
- The work Claude does runs in a sandbox on Anthropic’s infrastructure, with nothing installed in your network.
- The agent’s credentials for any additional connections, such as GitHub or a data warehouse, reach those systems to pull the required information. An organization Owner sets up those credentials as part of provisioning the identity.
Tag Claude in a channel
A user asks Claude to chart last week’s signups or fix a deploy test. The request starts a new session.
The session sandbox starts
Claude does the work in an isolated environment Anthropic builds for this thread, reading files, writing documents, and running code. The credentials you provision are not placed in the sandbox; they stay in the credential store and are injected at the proxy.
The request crosses Agent Proxy
When the work needs something outside the sandbox, like calling the GitHub API or querying a warehouse, the request crosses Agent Proxy, the network boundary between the sandbox and everything else. Agent Proxy checks it against the rules an admin configured, and decides whether it proceeds and what credential, if any, travels with it.
Agent Proxy attaches a credential
A matching credential comes from the credential store, where an admin’s connections are kept. Once saved, a credential is never displayed again; Agent Proxy retrieves it only at the moment of injection and attaches it to the request at the boundary, so the model and the sandbox itself are not given the key.
Agent Proxy
For each outbound request from the sandbox, Agent Proxy checks the destination against what an admin configured, with three possible outcomes:| When the destination | Result |
|---|---|
| Matches a connection’s rule | The proxy attaches that connection’s credential and forwards the request. The credential stays at the proxy; the model and sandbox are not given it. |
| Is on the network allowlist but matches no connection | The proxy forwards the request without a credential. |
| Matches neither | The proxy blocks the request. |
curl or a fetch call: a request is blocked unless its host matches a connection rule or the allowlist.
Nothing is installed inside your network. Your systems see only requests authenticated with the credentials Agent Proxy attached. For the endpoints and addresses your network team may need to allowlist, see Network requirements.
Agent access
What Claude can reach in a channel comes from the Access bundles an admin attached to that channel’s scope. Anyone in the channel gets the same capability, and the same request can do more in#platform-eng than in a general channel.
This design has four consequences.
- Configure once. Everyone in the scope can use it immediately.
- Predictability. What Claude can do never changes based on who asked.
- Personal connectors apply in DMs. A shared channel uses only the service-account connections an admin attached, not connectors on anyone’s claude.ai account.
- Clean audit. Actions in connected tools show up under a service account your security team already knows how to reason about.
Direct message channels
A DM with Claude works differently from a channel. There is no scope to attach an identity to, so a DM session runs with your own claude.ai account instead, the same way a Claude Code session on the web does, using your own connectors and credentials, with results attributed to you. The diagram contrasts with the channel path above; the sandbox is the same engine, but everything around it is yours.| In a channel | In a DM | |
|---|---|---|
| Acts as | Its own service accounts | You |
| Access | The channel’s Access bundles | Your personal connectors |
| Attribution | The agent’s accounts, in each tool’s audit log | Your name |
| Billing | The organization | Your seat |
- Connectors. The connectors on your account are available, including MCP servers you’ve added.
- Billing. Usage bills to your seat rather than the organization’s service key.
- Channel-side configuration. It doesn’t follow you in; the agent’s connections and repository grants don’t apply in DMs.
Claude Tag versus Claude Code in Slack
A DM with Claude Tag runs under your own account, which is also how Claude Code in Slack works, routing a coding @-mention to a Claude Code session on the web under the requester’s own account. The two can look identical. The table shows how to tell them apart.| Claude Tag in a channel | Claude Code in Slack | |
|---|---|---|
| Runs under | The agent identity an admin provisioned | Your own Claude account, linked in the Claude app |
| GitHub | The Claude GitHub App; pull requests belong to the app | Your GitHub connection on claude.ai/code; pull requests open under your account |
| Access | Follows the channel’s Access bundles | Follows you |
| Billing | The organization | Your seat |
@Claude in your workspace opens pull requests as you, you’re seeing Claude Code in Slack, not a Claude Tag session.
Related resources
- Security and data handling: where credentials are stored, what leaves your tenant, and what runs unattended
- Give Claude access: provision the access this page describes
- Restrict where Claude Tag operates: narrow where this agent identity is allowed to act