Skip to main content

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.

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.

Server URL

https://narrative.support/mcp
PropertyValue
TransportStreamable HTTP
HostingManaged by Narrative
AuthenticationNone
PricingFree

Tools

submit_feedback

Submit structured product feedback or a bug report from an agent session.
ParameterTypeRequiredDescription
summarystringYesShort summary of the feedback or bug
detailsstringYesFull description, including reproduction steps, expected vs. actual behavior, and any relevant context
categorystringNoFeedback 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:
claude mcp add --transport http narrative-agent-feedback https://narrative.support/mcp
Or in a JSON config:
{
  "mcpServers": {
    "narrative-agent-feedback": {
      "type": "http",
      "url": "https://narrative.support/mcp"
    }
  }
}