> For the complete documentation index, see [llms.txt](https://docs.podigee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.podigee.com/documentation/start-here/ai-agents/mcp-prompts/manage-feed-access.md).

# manage\_feed\_access

Reference for the \`manage\_feed\_access\` MCP prompt.

Protect a feed and manage private-feed listeners.

## Contract

| Property         | Value                |
| ---------------- | -------------------- |
| Prompt name      | `manage_feed_access` |
| Arguments        | None                 |
| Executes changes | No                   |

## Example request

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "prompts/get",
  "params": {
    "name": "manage_feed_access",
    "arguments": {}
  }
}
```

## Result shape

```json
{
  "type": "object",
  "required": [
    "description",
    "messages"
  ],
  "additionalProperties": false,
  "properties": {
    "description": {
      "type": "string"
    },
    "messages": {
      "type": "array",
      "minItems": 1,
      "items": {
        "type": "object",
        "required": [
          "role",
          "content"
        ],
        "additionalProperties": false,
        "properties": {
          "role": {
            "const": "user"
          },
          "content": {
            "type": "object",
            "required": [
              "type",
              "text"
            ],
            "additionalProperties": false,
            "properties": {
              "type": {
                "const": "text"
              },
              "text": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }
}
```

The returned description is: Manage who can access a private feed.

The result contains one user-role text message. The prompt supplies operating guidance to the client. It does not call a tool, grant a scope, or confirm an action.

## Guidance supplied to the client

Call manage\_feed\_access with a podcast\_id to list private-feed listeners and see which feed URLs exist. Creating a listener or changing one's status is a consequential change: preview it, show the user who is affected, then confirm. A private feed URL is a credential, so do not repeat one back in chat or put it anywhere the user did not ask for it. Whether the feed is private is settable here with feed\_protection enable or disable, on a plan that includes protected podcasts. That is a consequential change too, so preview it and confirm.

The client must still inspect tool results and follow the normal preview, confirmation, idempotency, and durable-operation contracts.

## Related tools

* [`manage_feed_access`](/documentation/start-here/ai-agents/mcp-tools/manage-feed-access.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.podigee.com/documentation/start-here/ai-agents/mcp-prompts/manage-feed-access.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
