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

# Agent Feedback MCP Server

> Public MCP server agents use to submit structured product feedback and bug reports

The Narrative Agent Feedback MCP server lets an AI agent file structured product feedback and bug reports without leaving the conversation. When a skill or workflow hits a rough edge, the agent can capture what happened and send it straight to the Narrative team. It pairs with the `narrative-common` and `narrative-identity` skill plugins, which call it to close the loop on agent-reported issues.

It is a public server with no authentication, so any connected MCP client can submit feedback.

For background on the Model Context Protocol, see [Data Collaboration MCP Server overview](/concepts/mcp/overview).

## Server URL

```
https://narrative.support/mcp
```

| Property       | Value                |
| -------------- | -------------------- |
| Transport      | Streamable HTTP      |
| Hosting        | Managed by Narrative |
| Authentication | None                 |
| Pricing        | Free                 |

## Tools

### `submit_feedback`

Submit structured product feedback or a bug report from an agent session.

| Parameter  | Type   | Required | Description                                                                                            |
| ---------- | ------ | -------- | ------------------------------------------------------------------------------------------------------ |
| `summary`  | string | Yes      | Short summary of the feedback or bug                                                                   |
| `details`  | string | Yes      | Full description, including reproduction steps, expected vs. actual behavior, and any relevant context |
| `category` | string | No       | Feedback category (e.g., `bug`, `feature_request`, `documentation`)                                    |

The server captures the agent's session context (active skill, model, and any user-provided tags) alongside the submitted message.

## Setup

Add the server to your MCP client the same way you would any remote HTTP MCP server. Use the URL above and skip the OAuth step.

For example, in Claude Code:

```bash theme={null}
claude mcp add --transport http narrative-agent-feedback https://narrative.support/mcp
```

Or in a JSON config:

```json theme={null}
{
  "mcpServers": {
    "narrative-agent-feedback": {
      "type": "http",
      "url": "https://narrative.support/mcp"
    }
  }
}
```

## Related

* [Data Collaboration MCP Server](/reference/integrations/mcp-server) — agent-facing access to the Narrative platform
* [Knowledge Base MCP Server](/reference/integrations/mcp-knowledge-base) — searchable Narrative documentation for agents
* [Connecting to the Narrative MCP Server](/guides/mcp/connecting-an-ai-assistant) — client setup walkthrough
