Narrative MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Narrative MCP ServerSearch for attributes related to demographics"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Narrative MCP Server
A Model Context Protocol (MCP) server that provides access to Narrative's Data Collaboration Platform APIs through any MCP server. For integrating your favorite data platform with your favorite LLM.
Learn more about Narrative: https://www.narrative.io/
Setup
To use this MCP server, you need to configure it in your MCP settings file (eg .cursor/mcp.json for Cursor or claude_desktop_config.json for Claude Desktop).
Add the following configuration to your mcp.json file:
{
"mcpServers": {
"narrative": {
"command": "bun",
"args": [
"--cwd",
"<FULL_PATH_TO>/data-collaboration-mcp",
"dev"
],
"env": {
"NARRATIVE_API_URL": "https://api.narrative.io",
"NARRATIVE_API_TOKEN": "<YOUR_API_TOKEN>"
}
}
}
}Important:
Replace
<YOUR_API_TOKEN>with your actual Narrative API token (required)Update the path in the
--cwdargument to point to your local installation of this repositoryGet your Narrative API token from your Narrative account settings at https://www.narrative.io/
After updating your MCP configuration, restart your editor or MCP client for the changes to take effect.
Related MCP server: Snowflake Cortex AI MCP Server
Available Tools
This MCP server provides the following tools:
search_attributes: Search Narrative Rosetta Stone attributes with paginationlist_datasets: List all available datasets from the Narrative marketplacelist_access_rules: List access rules with filtering optionssearch_access_rules: Search access rules with querydataset_statistics: Get comprehensive statistics for a datasetdataset_sample: Retrieve sample records from a datasetnql_execute: Execute NQL queries asynchronouslynql_get_results: Retrieve results from NQL query jobsecho: Simple echo tool for testing
Available Prompts
This MCP server provides expert guidance prompts:
execute-nql: Expert guidance for executing NQL queries on the Narrative platform. This prompt ensures queries follow all mandatory NQL syntax rules, namespace conventions, and best practices. It validates queries, enforces materialized view patterns, handles Rosetta Stone mappings, and provides post-execution guidance.
Usage Examples
Search for attributes
Search for attributes related to "demographics"List datasets
Show me all available datasetsUse the NQL execution prompt
Use the execute-nql prompt to help me write a query that combines data from dataset 1234The NQL execution prompt provides expert guidance including:
Validation of NQL syntax and structure
Enforcement of materialized view patterns
Proper namespace and dataset reference handling
Rosetta Stone integration guidance
Post-execution result handling
Development
MCP Inspector
The MCP Inspector is an interactive browser-based tool for testing and debugging MCP servers. It lets you connect to your server and manually invoke tools, browse resources, and test prompts — all without needing an LLM client.
Quick Start
npm run inspectThis loads the server config from .mcp.json, passes your .env credentials, and opens the Inspector UI in your browser. The terminal output will include a URL with an auth token — make sure to use that full URL:
http://localhost:6274/?MCP_PROXY_AUTH_TOKEN=<token>Manual Launch
You can also run the inspector directly with full control over options:
# Using your .mcp.json config (recommended)
source .env && npx @modelcontextprotocol/inspector \
--config .mcp.json \
--server data-collaboration \
-e NARRATIVE_API_URL=$NARRATIVE_API_URL \
-e NARRATIVE_API_TOKEN=$NARRATIVE_API_TOKEN
# Using an explicit command
source .env && npx @modelcontextprotocol/inspector \
-e NARRATIVE_API_URL=$NARRATIVE_API_URL \
-e NARRATIVE_API_TOKEN=$NARRATIVE_API_TOKEN \
bun src/index.ts
# Against the compiled build
npm run build && source .env && npx @modelcontextprotocol/inspector \
-e NARRATIVE_API_URL=$NARRATIVE_API_URL \
-e NARRATIVE_API_TOKEN=$NARRATIVE_API_TOKEN \
node build/index.jsInspector CLI Flags
Flag | Description |
| Path to an MCP config file (e.g. |
| Server name from the config file to inspect |
| Pass environment variables to the spawned server |
| Transport type: |
| Run in CLI mode (no browser UI) |
Using the Inspector UI
Once connected, the Inspector provides tabs for each MCP capability:
Tools — List all tools, view their JSON schemas, execute them with custom inputs, and inspect the results
Resources — Browse available resources, view metadata, and read resource contents
Prompts — List prompt templates, fill in arguments, and preview the generated messages
Notifications — View server log messages and notifications in real time
Development Workflow
Start the inspector:
npm run inspectMake changes to server code in
src/The inspector spawns the server fresh on each Connect — click Disconnect then Connect to pick up changes
Use the History panel to review the request/response sequence
Check Server Notifications for any logging messages from your server
CLI Mode
The inspector also supports a headless CLI mode (--cli) for one-shot invocations. This is useful for scripting, automated smoke tests, or when AI agents need to verify tool outputs during development.
Each call spawns the server, executes the method, prints JSON to stdout, and exits.
List capabilities:
# List all tools and their schemas
npm run inspect -- --cli --method tools/list
# List all resources
npm run inspect -- --cli --method resources/list
# List all prompts
npm run inspect -- --cli --method prompts/listCall a tool:
# Call the echo tool
npm run inspect -- --cli --method tools/call --tool-name echo --tool-arg 'message=hello'
# Search for rosetta stone attributes
npm run inspect -- --cli --method tools/call --tool-name search_attributes --tool-arg 'query=email'
# List datasets
npm run inspect -- --cli --method tools/call --tool-name list_datasetsPipe through jq for readable output:
npm run inspect -- --cli --method tools/call --tool-name search_attributes --tool-arg 'query=age' 2>/dev/null | jq '.content[0].text | fromjson'CLI-specific flags:
Flag | Description |
| MCP method to invoke (e.g. |
| Tool name (required for |
| Tool argument as key=value (repeatable for multiple args) |
Testing Features with the /test-mcp-feature Skill
A Claude Code skill is available for AI agents to test MCP features using the Inspector CLI. Run it from Claude Code with:
/test-mcp-feature list_datasetsThis walks agents through the full verification flow: checking feature registration, invoking the feature, parsing responses, and testing edge cases. See .claude/commands/test-mcp-feature.md for the full skill definition.
Troubleshooting
Connect button does nothing: Make sure the URL includes the
?MCP_PROXY_AUTH_TOKEN=...query parameter. The inspector requires this token for authentication."Connection Error" after clicking Connect: Check that your
.envfile contains validNARRATIVE_API_URLandNARRATIVE_API_TOKENvalues. The server will fail to start without them.Wrong command/args shown: Use
--config .mcp.json --server data-collaborationto load from your config file rather than manually entering the command.
Testing
Run the test suite:
bun run testnpm Scripts
Script | Description |
| Start the server in watch mode (auto-restarts on changes) |
| Type-check and compile to |
| Run the compiled server |
| Run the test suite |
| Run tests in watch mode |
| Launch the MCP Inspector (browser UI + CLI mode) |
Verification
After configuring the MCP server and restarting your editor, verify it's working by:
Asking your AI assistant to "List all available datasets"
Asking it to "Search for attributes related to location"
The Narrative tools should appear in the available MCP tools list
Troubleshooting
Check MCP server logs if you encounter issues:
For Cursor:
# Check Cursor logs for MCP server errors
tail -f ~/Library/Logs/Cursor/logs/*.logFor Claude Desktop:
tail -f ~/Library/Logs/Claude/mcp*.logThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/narrative-io/data-collaboration-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server