Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
270 changes: 135 additions & 135 deletions content/.metadata.json

Large diffs are not rendered by default.

63 changes: 58 additions & 5 deletions content/mcp/docs/tutorials/security/authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -620,8 +620,8 @@ For our testing purposes, we will create an extremely simple MCP server that exp
AUTH_REALM: str = os.getenv("AUTH_REALM", "master")

# OAuth client settings
OAUTH_CLIENT_ID: str = os.getenv("OAUTH_CLIENT_ID", "mcp-server")
OAUTH_CLIENT_SECRET: str = os.getenv("OAUTH_CLIENT_SECRET", "UO3rmozkFFkXr0QxPTkzZ0LMXDidIikB")
OAUTH_CLIENT_ID: str = os.getenv("OAUTH_CLIENT_ID", "test-client")
OAUTH_CLIENT_SECRET: str = os.getenv("OAUTH_CLIENT_SECRET", "<YOUR_SERVER_CLIENT_SECRET>")

# Server settings
MCP_SCOPE: str = os.getenv("MCP_SCOPE", "mcp:tools")
Expand Down Expand Up @@ -841,8 +841,11 @@ For our testing purposes, we will create an extremely simple MCP server that exp
form_data = {
"token": token,
"client_id": self.client_id,
"client_secret": self.client_secret,
}
# Only send client_secret when one is configured
# Public clients authenticate with client_id alone.
if self.client_secret:
form_data["client_secret"] = self.client_secret
headers = {"Content-Type": "application/x-www-form-urlencoded"}

response = await client.post(
Expand All @@ -866,7 +869,13 @@ For our testing purposes, we will create an extremely simple MCP server that exp
client_id=data.get("client_id", "unknown"),
scopes=data.get("scope", "").split() if data.get("scope") else [],
expires_at=data.get("exp"),
resource=data.get("aud"), # Include resource in token
# AccessToken.resource is `str | None`. Keycloak returns `aud`
# as a *list* here (e.g. ["test-client", "http://localhost:3000",
# "account"]); passing that list straight in raises a pydantic
# ValidationError that the broad `except` below turns into a
# silent 401. We already confirmed this server's resource is a
# valid audience in `_validate_resource`, so record that.
resource=self.resource_url,
)

except Exception as e:
Expand Down Expand Up @@ -895,7 +904,51 @@ For our testing purposes, we will create an extremely simple MCP server that exp
return check_resource_allowed(self.resource_url, resource)
```

For more details, see the [Python SDK documentation](https://github.com/modelcontextprotocol/python-sdk).
For more details, see below or the [Python SDK documentation](https://github.com/modelcontextprotocol/python-sdk).

**Python MCP Server**

In the server's root have a `pyproject.toml` file and a `mcp_server` folder. Put all the Python files in the `mcp_server` folder, and fill the `pyproject.toml` file like:

```toml theme={null}
[project]
name = "mcp-simple-auth"
version = "0.1.0"
description = "A simple MCP server demonstrating OAuth authentication"
requires-python = ">=3.10"
authors = [{ name = "Model Context Protocol a Series of LF Projects, LLC." }]
license = { text = "MIT" }
dependencies = [
"anyio>=4.5",
"click>=8.2.0",
"httpx>=0.27",
"mcp",
"pydantic>=2.0",
"pydantic-settings>=2.5.2",
"sse-starlette>=1.6.1",
"uvicorn>=0.23.1; sys_platform != 'emscripten'",
]

[project.scripts]
mcp-simple-auth-rs = "mcp_server.server:main"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["mcp_server"]

[dependency-groups]
dev = ["pyright>=1.1.391", "pytest>=8.3.4", "ruff>=0.8.5"]
```

Then run the commands below to start the server.

```bash theme={null}
uv sync
uv run mcp-simple-auth-rs --port=3000 --auth-server=http://localhost:8080 --transport=streamable-http
```
</Tab>

<Tab title="C#">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To regain access to your account on any device, you'll need to authenticate agai

If you used your Claude account to authenticate into Claude Code, you can manage your authorization tokens by navigating to [Settings > Claude Code](http://claude.ai/settings/claude-code). To remove a token and log out of Claude Code, click the trash can icon.

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1608263923/b4fa7d6f6f08f2adffb4ea63bc58/image+%287%29.png?expires=1785128400&amp;signature=449ac59ebcb18ae7feda336bfb6c5eb53b2a899f16189f60e936fb9f8c5028b4&amp;req=dSYnHst4nohdWvMW1HO4zVuHihn81G%2B%2FAQofdwM8qVc%2FHHGeu80UwOFDgMDW%0AU2T0y35ERnPcegx%2BdOg%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1608263923/b4fa7d6f6f08f2adffb4ea63bc58/image+%287%29.png?expires=1785146400&amp;signature=304231244656316ddc19058a4c4af9632b9fec627915db3ff3b1f3a44b00f50b&amp;req=dSYnHst4nohdWvMW1HO4zVuHihn80mG%2FAQofdwM8qVfi8131p5lZwyp6WHGo%0AU9g7oMhBUaG22fiylGE%3D%0A)

## Unable to access your account?

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ If you followed the steps above to delete your Console organization but want to

If you have an outstanding balance, you will see a message during the deletion flow that prompts you to pay the balance first by routing you to [Settings > Billing](https://platform.claude.com/settings/billing).

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1973957766/5c2dd87c0818a0400099a833c9b3/4cc3130a-f696-4967-9fe3-e5623c6f02bd?expires=1785128400&amp;signature=911d6d056d7ed07e6d19431214004ebf561449141a9d7a5ebb6ee14b0ee1bb59&amp;req=dSkgFcB7moZZX%2FMW1HO4zbYXUBJjXuwfFZRyvJPpBZ%2BCLkwPEbAHl%2BSCQ89Z%0Alzyrvie4VgH7qCfn3KI%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1973957766/5c2dd87c0818a0400099a833c9b3/4cc3130a-f696-4967-9fe3-e5623c6f02bd?expires=1785146400&amp;signature=740464d0b77f3ec05926b4594b1ee301f11a9d3cca6ed43fbce6e48a7deddd58&amp;req=dSkgFcB7moZZX%2FMW1HO4zbYXUBJjWOIfFZRyvJPpBZ8S3hY6n%2F1exiB0Chnm%0AACSO5Dzg%2F2mZmRLqFWk%3D%0A)

You must pay this outstanding balance before you’re able to move forward with the deletion process.

### I’m seeing a message about contacting the Support team when I try to delete my Console organization.

There are some scenarios where you will need to contact our team to delete your account. If this is the case, it will be noted when you try to delete your organization:

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1973957765/19dda72a40db95d78c00c27a1a1c/6ce89be6-93ce-409c-bbea-d34be09db348?expires=1785128400&amp;signature=d7238ca4c8f3890d9831f143097f1aa0231c790e03587cfe58ac45470590623b&amp;req=dSkgFcB7moZZXPMW1HO4zRW12%2BDMeqz9ZxDZGlqR6GjELElPbZDNcmCGIgAg%0AaX8lpQzFyCTtKi2sZkI%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1973957765/19dda72a40db95d78c00c27a1a1c/6ce89be6-93ce-409c-bbea-d34be09db348?expires=1785146400&amp;signature=6f2e52644231334a05efbaefeba332626fab7e557d013d131f4ed5b1175afa86&amp;req=dSkgFcB7moZZXPMW1HO4zRW12%2BDMfKL9ZxDZGlqR6Gg0H6iFyqSqHUsIO36l%0AD4Wmilp3qzTjg7mKbcM%3D%0A)

If you are seeing this message, this indicates that your Console organization cannot be deleted via the self-service pathway.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ As a Primary Owner or Owner of a Team or Enterprise plan, you can manage the abi

2. Use the toggle to change the **Rate chats** setting for your organization:

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/2058292603/75752add0bed6a9f3ab217f01708/CleanShot%2B2026-02-12%2Bat%2B08_55_14-402x.png?expires=1785128400&amp;signature=d71e9e51d868cab77b7c16e199490dc95518be795dc13c9f774150d340401795&amp;req=diAiHst3n4dfWvMW1HO4zYGm8iIdEqDI085gFtEpvcQnlFR0Q1bXsqOEO%2F4o%0AF%2FuG0vDuzV7RTAgdg3A%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/2058292603/75752add0bed6a9f3ab217f01708/CleanShot%2B2026-02-12%2Bat%2B08_55_14-402x.png?expires=1785146400&amp;signature=41604402e91a5c37ff74d68dd42e64cfccb91f856e7993e3194828c234c75567&amp;req=diAiHst3n4dfWvMW1HO4zYGm8iIdFK7I085gFtEpvcTB0B2oRm9tBClUj9ol%0AEUkBD%2FsfDqs%2F%2Fs%2F0vaA%3D%0A)

More information on how Anthropic collects, uses, and stores feedback data can be found in our Privacy Center: **[How long do you store my organization’s data?](https://privacy.claude.com/en/articles/7996866-how-long-do-you-store-my-organization-s-data)**
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ To manage feedback for your Console organization:

2. Toggle the feedback switch on or off.

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1729186182/ebf4032a12a8c56959ca927726ce/Screenshot+2025-09-16+at+12_32_31%E2%80%AFPM.png?expires=1785128400&amp;signature=126c1328804a3d0afa3039a81b69975633024b43fc7f218d797ad7b4930406ec&amp;req=dSclH8h2m4BXW%2FMW1HO4zVpN5HIcW2BBJ%2FadMup7FQfp2nH4SXMgvZWzqtJm%0ADfUhLgJY47DiEfxMXsM%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1729186182/ebf4032a12a8c56959ca927726ce/Screenshot+2025-09-16+at+12_32_31%E2%80%AFPM.png?expires=1785146400&amp;signature=e6de769c4670b1087c559c9fc72e6c116ce4262f7d372a3f5d97fea7bb7aa664&amp;req=dSclH8h2m4BXW%2FMW1HO4zVpN5HIcXW5BJ%2FadMup7FQfflOGQJaYBDk3YKTZ6%0AET4LQuE%2F3zt6wSNsfEo%3D%0A)

More information on how Anthropic collects, uses, and stores feedback data can be found in our Privacy Center: [How long do you store my organization’s data?](https://privacy.claude.com/en/articles/7996866-how-long-do-you-store-my-organization-s-data)
6 changes: 3 additions & 3 deletions content/support/10593882-share-and-unshare-chats.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ To unshare a chat:

Users on free, Pro, or Max plans can review a log of shared chats by navigating to **[Settings > Privacy](https://claude.ai/settings/data-privacy-controls)**. Find the **Privacy settings** section and click “Manage” next to **Shared chats:**

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1921669913/7cc7be48cfc7a18f9f469d6cd83c/CleanShot+2026-01-08+at+10_20_43%402x.png?expires=1785128400&amp;signature=d0334a97e12b702cc83780b2c7a65af007b6c58b270b7b36d10fcfdfdcdc8dc8&amp;req=dSklF894lIheWvMW1HO4zWn5HzYcYE1vc9cNIYuX0GEXV598B1T0f5x020GP%0AyB0RP%2BkXXB9bibheiK0%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1921669913/7cc7be48cfc7a18f9f469d6cd83c/CleanShot+2026-01-08+at+10_20_43%402x.png?expires=1785146400&amp;signature=9c839f50a510a4f0346f9b68e6c1c2842af078da5d27092d4900e95f5dcaa55d&amp;req=dSklF894lIheWvMW1HO4zWn5HzYcZkNvc9cNIYuX0GFr2qVmj4Q89PG7oM9n%0AF49fv5SpvMEY%2BBM0mSc%3D%0A)

This will open a **Shared chats** modal listing the title, date shared, and link to each chat, allowing you to easily review and access all your previously-shared content. From here, you also have the option to click “Unshare” next to each listed chat to revoke access to the last snapshot you shared:

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1624243810/e6fe1d262597446c7fe21dff9f10/AD_4nXdW-GhByF8uKV7fCq9lTbkVB91FglSL6TSyXAOUk_MLcTV9YsEMBMkm9rgm1oXqv0k3sJh1JhlzZP6tHVkKbDJJ71pDRRtM3aVNG64MDuKDIzgmknh-XDZdNa7biTsTdwGoPr5GRg?expires=1785128400&amp;signature=cd556ceeebfd8bbea6526754c63212f025cfef8ed42ba04d45d9ed7ecd3f452b&amp;req=dSYlEst6noleWfMW1HO4ze44eCJglho6guvTv9woD7alv5uvk4HNi7qzih5i%0AcLf%2B6h2BkhskvMiUEb8%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1624243810/e6fe1d262597446c7fe21dff9f10/AD_4nXdW-GhByF8uKV7fCq9lTbkVB91FglSL6TSyXAOUk_MLcTV9YsEMBMkm9rgm1oXqv0k3sJh1JhlzZP6tHVkKbDJJ71pDRRtM3aVNG64MDuKDIzgmknh-XDZdNa7biTsTdwGoPr5GRg?expires=1785146400&amp;signature=965365154dc9b7398a2f43497086a147f6f6cb681b98c9022879cd0b4114bf38&amp;req=dSYlEst6noleWfMW1HO4ze44eCJgkBQ6guvTv9woD7ZASc40AG2qxj21uUfl%0ASKzHxummjZYHG4pOIqQ%3D%0A)

If you don’t have any shared chat snapshots, the **Shared chats** modal will show “No shared content found”:

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1624243808/b025db8e598f0c88fb16d83d48d5/AD_4nXeUwCKnmFzzrjMHhfr5By4zk5pJlkEn3wbJ8-aNfu13Yl99IjBywpqPx9G07QRzpH1EwRY7uG7Q9m9fib98Gql1cIV7XwUCTzEgBNu79Ey8tCOS5CEVmwveIcEOxJ4fonBhe3g9MA?expires=1785128400&amp;signature=efef26102f8f647fa20e7ec02d8ed5968c7a2c47503c72c5eccd372269c070be&amp;req=dSYlEst6nolfUfMW1HO4zdaFncB1g4G1DeZsm0Gz1HtkOP0b%2BgWEfQbxWrgl%0AxCAn13yLE1Zr%2BDiXpK4%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1624243808/b025db8e598f0c88fb16d83d48d5/AD_4nXeUwCKnmFzzrjMHhfr5By4zk5pJlkEn3wbJ8-aNfu13Yl99IjBywpqPx9G07QRzpH1EwRY7uG7Q9m9fib98Gql1cIV7XwUCTzEgBNu79Ey8tCOS5CEVmwveIcEOxJ4fonBhe3g9MA?expires=1785146400&amp;signature=a78893f8ba52be073227b15c17f1087d6d357b3c25e418684493625581648e67&amp;req=dSYlEst6nolfUfMW1HO4zdaFncB1hY%2B1DeZsm0Gz1HsaDh4oavqbCujYtls%2B%0A%2F6lm%2F8tG%2BDjAh6JybYI%3D%0A)
2 changes: 1 addition & 1 deletion content/support/10684626-enable-and-use-web-search.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Web search expands Claude's knowledge with real-time data, helping you make bett

An Owner or Primary Owner must first enable web search for the entire workspace. This can be found in **[Admin settings > Capabilities](https://claude.ai/admin-settings/capabilities)**:

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/2032032614/ad907328c4d9a26ee4bd9ca27a52/CleanShot+2026-02-05+at+09_01_42%402x.png?expires=1785128400&amp;signature=5f4202453867675b95213cb2f71969776f5e5b893528d2724cecf82cd3fa609a&amp;req=diAkFMl9n4deXfMW1HO4zetvyre7GsZUUJIbgsqS2%2BO5qazSbjzY5BlPgZvu%0A6oqM2EjhOTWFt7qcuAk%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/2032032614/ad907328c4d9a26ee4bd9ca27a52/CleanShot+2026-02-05+at+09_01_42%402x.png?expires=1785146400&amp;signature=272b751d0d1db2d4edca35af1a557f66b2cff1a9cbd0580a2390453c092b58cd&amp;req=diAkFMl9n4deXfMW1HO4zetvyre7HMhUUJIbgsqS2%2BM%2FhgF7CBAXYSLTIhJu%0ANIhv5hDSsOGsAjbLhaw%3D%0A)

Once this is enabled at the workspace level, any member of the organization can switch it on while starting a chat by clicking the “+” button in the lower left corner of the chat window and selecting “Web search." Users can toggle this off for chats that don’t require web search capabilities.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ The prompt sharing feature enables teams to collaborate on prompt development wi

3. Select "Share" from the dropdown menu:

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409899224/f39d557d4925710cb16384886baa/AD_4nXf-Ev9bV40PoDjQX2fMF_zYpHSMQp7u3X92DNp-KRcykraFg8DnLdHCamIzXEPhtAEYhsBT9grnobQwQm1tgtnjR0EfyEuOFV61_InUuDwa121cj-1_KDtm9_NOYRD4LjcZQUIK?expires=1785128400&amp;signature=3b1cc1ffbf69d4cd2d9ed9c1df554304028c1894bc3d51585a7de5f8d92d838c&amp;req=dSQnH8F3lINdXfMW1HO4zajBO1wvOwe%2F5HPc4FxcZuokBypi9ZfwYhQkxa8c%0AUITp%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409899224/f39d557d4925710cb16384886baa/AD_4nXf-Ev9bV40PoDjQX2fMF_zYpHSMQp7u3X92DNp-KRcykraFg8DnLdHCamIzXEPhtAEYhsBT9grnobQwQm1tgtnjR0EfyEuOFV61_InUuDwa121cj-1_KDtm9_NOYRD4LjcZQUIK?expires=1785146400&amp;signature=658fd431f16fb9b35b2f4cee5d8f949d5c9ce37cb6e9fa64f0b378bfd7ba9278&amp;req=dSQnH8F3lINdXfMW1HO4zajBO1wvPQm%2F5HPc4FxcZuo6S%2BoDKoqXGx5a4lNX%0AW4Xs%0A)

4. Change the access settings from "Private" to "Shared."

5. Click the "Copy link" button that appears:

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409899713/0fd923a839b2c0ff8a0b5e11cf0c/AD_4nXdGUlO0CiCdnhllDnlz2Dd75uiNClFmR8_Qi1Wx6MM9rF-EUSIzRzvs_P6kGSqWBuF-l4iBMRtoEN8ip1-c8bqNzSqKA7SX1STIjtRqNisW-NCmcl9DEhWjv4edORWaT4LNZuPVww?expires=1785128400&amp;signature=c313e3da25bafef22fd068875f733e87c144be589af51bf0712034aeb2904ad9&amp;req=dSQnH8F3lIZeWvMW1HO4zaU8nlK1PMStiqPPSiDAl9J4XynV9ABRepFb5GKH%0Ao9wu%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409899713/0fd923a839b2c0ff8a0b5e11cf0c/AD_4nXdGUlO0CiCdnhllDnlz2Dd75uiNClFmR8_Qi1Wx6MM9rF-EUSIzRzvs_P6kGSqWBuF-l4iBMRtoEN8ip1-c8bqNzSqKA7SX1STIjtRqNisW-NCmcl9DEhWjv4edORWaT4LNZuPVww?expires=1785146400&amp;signature=e2348bc697ea61672da49b3f089738dd178d81d1daf79463e28fb6ceb23e22fb&amp;req=dSQnH8F3lIZeWvMW1HO4zaU8nlK1OsqtiqPPSiDAl9K6okAgut%2BMwpPmAPJ7%0ANfhV%0A)

6. Share the link with members of your workspace.

Expand All @@ -38,7 +38,7 @@ When working on a shared prompt:

**Note:** If a collaborator saves changes to the prompt while you are viewing it, you will be prompted with a message to “Go to the Latest Version,” where all their changes will be reflected.

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409901036/6b69f2878fcb1b4e9ba0747464ac/AD_4nXcp1htcsSLR8H98i7KazEFqIkOhVUHnw__-17jbMZ-n70qnSttxx_m7wNNaHsK7FZHoG8v6zRyqkElQrtdVkxnydo2hzsznCwt6ehzqlGAR7Js7TggP6WmVfwnUTgbouDIxyGS0?expires=1785128400&amp;signature=dd962ccf2f7e8ac0f3d6c5208597eeccf49b8dcbba880660647df8d4d21c00ec&amp;req=dSQnH8B%2BnIFcX%2FMW1HO4zUnGutIOB0si83rdFAdB3KzKUYmFoGGMslhzFNei%0AbnZ%2Bme6fAc1PFVcsUHQ%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409901036/6b69f2878fcb1b4e9ba0747464ac/AD_4nXcp1htcsSLR8H98i7KazEFqIkOhVUHnw__-17jbMZ-n70qnSttxx_m7wNNaHsK7FZHoG8v6zRyqkElQrtdVkxnydo2hzsznCwt6ehzqlGAR7Js7TggP6WmVfwnUTgbouDIxyGS0?expires=1785146400&amp;signature=926f88e99bc7c3f36218429b33a2a640c9485562c701b121b6155dea2aa0c4f2&amp;req=dSQnH8B%2BnIFcX%2FMW1HO4zUnGutIOAUUi83rdFAdB3KxTBH%2F39zciX93A8Sm0%0AGRgAFK87j6QK%2FdFWFSc%3D%0A)

## Viewing Version History

Expand All @@ -48,13 +48,13 @@ To see previous versions of a prompt:

2. Select "Version history" from the dropdown:

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409901693/2924593d08c79c5ef1c4ca795f9d/AD_4nXf-Ev9bV40PoDjQX2fMF_zYpHSMQp7u3X92DNp-KRcykraFg8DnLdHCamIzXEPhtAEYhsBT9grnobQwQm1tgtnjR0EfyEuOFV61_InUuDwa121cj-1_KDtm9_NOYRD4LjcZQUIK?expires=1785128400&amp;signature=46e70024f5a49b82b0924c28181b0bebb44e133e20878fa5bddb9ed1c1da6d22&amp;req=dSQnH8B%2BnIdWWvMW1HO4zdOs5EEhN3raplKKWUPxWw1Ws5ZpvrMd2OYJNXEd%0AmzRL%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409901693/2924593d08c79c5ef1c4ca795f9d/AD_4nXf-Ev9bV40PoDjQX2fMF_zYpHSMQp7u3X92DNp-KRcykraFg8DnLdHCamIzXEPhtAEYhsBT9grnobQwQm1tgtnjR0EfyEuOFV61_InUuDwa121cj-1_KDtm9_NOYRD4LjcZQUIK?expires=1785146400&amp;signature=21806d41a779e1eaf4e30c0808ea962ddf571cf3c77bf120e17ff77476c34b7e&amp;req=dSQnH8B%2BnIdWWvMW1HO4zdOs5EEhMXTaplKKWUPxWw1wfxUa%2BPGoc%2BS4J%2FtP%0ACxKQ%0A)

3. Choose the specific version you want to view from the list.

**Note:** Past versions cannot be edited. To restore the prompt to a previous version, select the version from the version history list, and click the “Restore” button in the pop up.

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409902092/39258424bd71205743134bb5a2d8/AD_4nXe7EGQNq4UAioXobBxbEdluYda1qU277VuDxoqXgmL9z1ch8ro5k3RjDmBWlpPzcfI8eeAbbmiouCc2AEfGPO_LiwFekOgCDj5MV8klaRgH1BHko5OZ1WtWq8Ow0HlYif77j2AxRQ?expires=1785128400&amp;signature=38b7cae6cd8e41adf9ce455a9931b1817bbdd224f7517def78d6fa32c8aa8994&amp;req=dSQnH8B%2Bn4FWW%2FMW1HO4zeZkcjJSid8kRPhLT%2BKEBGOv2lshvHEZGnurWdJe%0ADE7IrBqKcQUJN8Jnzy8%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409902092/39258424bd71205743134bb5a2d8/AD_4nXe7EGQNq4UAioXobBxbEdluYda1qU277VuDxoqXgmL9z1ch8ro5k3RjDmBWlpPzcfI8eeAbbmiouCc2AEfGPO_LiwFekOgCDj5MV8klaRgH1BHko5OZ1WtWq8Ow0HlYif77j2AxRQ?expires=1785146400&amp;signature=4b5279c69f760da68f186266a2309c11f37f38aca3efec163430a5a1ebd30c22&amp;req=dSQnH8B%2Bn4FWW%2FMW1HO4zeZkcjJSj9EkRPhLT%2BKEBGM%2B%2BawlsAUjIpjv9SOu%0Av4d9EGz%2BhldLKQLozyQ%3D%0A)

## Unsharing a Prompt

Expand All @@ -64,6 +64,6 @@ To see previous versions of a prompt:

3. Change the access settings from "Shared" to "Private":

![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409898166/d7f3c0233ef3a3fa66701b558db7/AD_4nXcuZY7tln-InGzsyEmOZdRER_FWN9rQmcKalQqRTu6lSEyFSGBhGuvVPkLv7QHvsJCZsHz6-lTOX_tw77ribji4VlTsdG2dp-orGm6ST7IQ9aRnZvQMNvetkik0voTDZ1rHuFP5zA?expires=1785128400&amp;signature=895e2bc58fdcdf0cd3c8cc6bcb6759b0224ed7b701714b3c6596155565599494&amp;req=dSQnH8F3lYBZX%2FMW1HO4zZMvtFLfRv5lH68akkuAPm2UoalPagrHBAFH9RYl%0AEwMU9hUGhzlnAxgszhY%3D%0A)
![](https://downloads.intercomcdn.com/i/o/lupk8zyo/1409898166/d7f3c0233ef3a3fa66701b558db7/AD_4nXcuZY7tln-InGzsyEmOZdRER_FWN9rQmcKalQqRTu6lSEyFSGBhGuvVPkLv7QHvsJCZsHz6-lTOX_tw77ribji4VlTsdG2dp-orGm6ST7IQ9aRnZvQMNvetkik0voTDZ1rHuFP5zA?expires=1785146400&amp;signature=50ad064056eab22e6465fbf9f3989e00f71bdeda1b1fa9d506225ad5b91ba94b&amp;req=dSQnH8F3lYBZX%2FMW1HO4zZMvtFLfQPBlH68akkuAPm22hJC3wFv6IWixHpzL%0A8UcxJt8RCNhWBQVZ0Gw%3D%0A)

**Note:** Unsharing immediately disables access via the direct link. Anyone that the link was previously shared with will no longer be able to view the prompt.
Loading
Loading