Enterpret
Enterpret's Wisdom MCP Server brings customer intelligence directly into your favorite AI tools.
Enterpret's MCP Server brings customer intelligence directly into your favorite AI tools — Claude, Cursor, Notion, Glean, and any other tool that supports the Model Context Protocol (MCP).
What is MCP?
The Model Context Protocol is an open standard that allows AI assistants to securely connect to data sources. Enterpret's MCP delivers accurate, cited customer insights wherever you work.
Key capabilities:
- Query your complete customer feedback dataset
- Get contextual answers grounded in your Knowledge Graph
- Receive cited responses with direct links to source feedback
- Maintain conversation context across multiple questions
Why use Enterpret's MCP Server?
- Access customer intelligence where you work - No context switching or new tools to learn
- Context - Enterpret draws from your entire Knowledge Graph for relevant insights
- Accuracy - Every response includes citations and links to source feedback
Setup Instructions
Claude (Web & Desktop)
Note: Connectors require a paid Claude plan (Pro, Max, Team, or Enterprise).
Pro and Max
Click here to add Enterpret to Claude, then click Connect to authorize access.
...or, find it manually:
- Open Claude and click Customize in the sidebar
- Click Connectors
- Click the + button
- Search "Enterpret"
- Click Connect to authorize access
(IMPORTANT) Initialize Wisdom at the start of each new conversation (see instructions below)
Team and Enterprise
Setting up Wisdom for your team is a two-step process: an admin adds the connector for the organization, then each team member connects individually.
Step 1: Admin adds the connector
Click here to add Enterpret to Claude, then click Add to enable it for your organization.
- Navigate to Admin settings > Connectors
- Search for "Enterpret" in the Connectors Directory and click Add
Then:
- Navigate to Settings > Connectors
- Find Wisdom in the list and click "Connect" to authorize access
Once connected, the Wisdom MCP becomes available to every member in your organization — no need to set it up user by user.
Step 2: Members connect individually
- Navigate to Settings > Connectors
- Find Wisdom in the list of available connectors
- Click "Connect" to authorize access
Each member authenticates with their own account — queries and usage are tracked individually.
Initialize Wisdom (Important)
Initialize Wisdom at the start of each new conversation. This initializes your AI tool on how to use the Wisdom MCP in the best possible way for the best results.
- Click the '+' button at the bottom left of the text input
- From the menu, click 'Add from wisdom'
- Select both 'Initialize Wisdom' and 'Usage Guidelines'
- Click Send
Claude Code
- Open Terminal (or Command Prompt on Windows) and run:
claude mcp add --transport http --scope user wisdom https://wisdom-api.enterpret.com/server/mcp - Start Claude Code:
claude - Run the
/mcpcommand, select Wisdom from the list of MCP servers, then click "Authenticate" to complete the authentication flow - (IMPORTANT) Initialize Wisdom at the start of each new conversation:
- In Claude Code, start typing
/wisdomand you'll see the command/wisdom:initialize_wisdom (MCP)appear as a suggestion - Select it and press Enter
- In Claude Code, start typing
Cursor
Quick Install (Recommended)
- In your Enterpret dashboard, navigate to Settings > Wisdom MCP
- Click the Connect button next to Cursor
- This will start the configuration process in Cursor with your organization's MCP settings prefilled
- (IMPORTANT) Initialize Wisdom at the start of each new conversation:
- In Cursor, start typing
/wisdomand you'll see the command/wisdom/initialize_wisdomappear as a suggestion - Select it and press Enter or click Send
- In Cursor, start typing
Manual Setup
If auto-configuration doesn't work, you can manually configure Cursor:
- Press
Cmd+Shift+P(Mac) orCtrl+Shift+P(Windows) to open the command palette - Type "Cursor Settings" and select it
- Navigate to MCP in the left sidebar
- Click Add Custom MCP
- Add the following configuration:
{
"mcpServers": {
"wisdom": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://wisdom-api.enterpret.com/server/mcp"]
}
}
} - Save the file (
Cmd+SorCtrl+S) - (IMPORTANT) Initialize Wisdom at the start of each new conversation:
- In Cursor, start typing
/wisdomand you'll see the command/wisdom/initialize_wisdomappear as a suggestion - Select it and press Enter or click Send
- In Cursor, start typing
Notion Custom Agents
Build Notion Custom Agents that run on top of your customer feedback — scheduled digests, in-page @mentions on PRDs, and database-backed workflows. Notion supports the full MCP protocol, so Enterpret works out of the box.
Follow the step-by-step setup in Enterpret in Notion Custom Agents.
Note: Requires a Notion Business or Enterprise plan. A workspace admin must enable Custom MCP servers under Settings → Notion AI → AI connectors (one-time).
Glean
Connect Enterpret to Glean so users can query customer feedback from the Glean Assistant and wire Enterpret tools into Glean Agent Builder workflows. Glean is admin-managed — a Glean workspace admin sets up the connection once in the Admin Console, and every authorized user gets access to it.
In Glean, go to Admin Console → Platform → Actions, click Add, and choose Import tools from MCP server. Use the following configuration:
- MCP server URL:
https://wisdom-api.enterpret.com/server/mcp - Transport type: Streaming HTTP
- Authentication: OAuth (recommended) or Bearer token from Settings → MCP in your Enterpret dashboard
Once connected, an admin can enable individual Enterpret tools for the Glean Assistant and for Agent Builder, and apply role-based access to control which creators can use them in agents. For the full admin walkthrough, see Glean's documentation: Connect Remote MCP Servers to Glean.
Other AI Tools
For MCP-compatible AI tools not listed above, use this URL to connect to the Wisdom MCP: https://wisdom-api.enterpret.com/server/mcp
(IMPORTANT) Initialize Wisdom at the start of each new conversation. This initializes your AI tool on how to use the Wisdom MCP in the best possible way for the best results.
If your tool supports MCP resources, look for and add the following resources to your conversation:
- Initialize Wisdom - Loads your Knowledge Graph schema and organization details
- Usage Guidelines - Provides query patterns and best practices
If your tool doesn't support MCP resources, run this prompt at the start of each new conversation:
Act as Wisdom. Retrieve the Knowledge Graph schema, organization details, and usage guidelines to understand available data and query patterns, then help me explore customer feedback, identify trends, analyze sentiment, and discover insights.
Bearer Token Authentication
In addition to OAuth, Wisdom supports Bearer token authentication for MCP clients that require this method.
- Navigate to Settings > Wisdom MCP in your Enterpret dashboard
- Click Generate under Auth Token
- Copy the token
- Add the token to your MCP configuration using the --header flag:
--header "Authorization: Bearer YOUR_AUTH_TOKEN_HERE"
Example configuration:
{
"mcpServers": {
"wisdom": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://wisdom-api.enterpret.com/server/mcp",
"--header",
"Authorization: Bearer YOUR_AUTH_TOKEN_HERE"
]
}
}
}
Note: Tokens expire after 6 months. Generate a new token and update your configuration when needed.
Available Tools
The MCP server provides these tools to your AI assistant:
Get Organization Details
get_organization_details - Load your organization's name, ID, and dashboard URL to set up your Wisdom session.
Get Schema
get_schema - Discover your Knowledge Graph structure, including product areas, themes, and available data sources.
Execute Cypher Query
execute_cypher_query - Query your customer feedback data to surface insights, trends, and patterns across all sources.
Search Knowledge Graph
search_knowledge_graph - Look up specific terms, product areas, or themes to find the right data before querying
FAQs
I don't see the Wisdom MCP in my AI tool
- Ensure you completely restarted your application (not just minimized)
- Check that Node.js is installed by running
node --versionin Terminal - Verify you're using the correct MCP URL:
https://wisdom-api.enterpret.com/server/mcp - Make sure you have a stable internet connection
I'm getting "Cannot connect to MCP server" error
- Double-check your MCP URL - ensure you're using
https://wisdom-api.enterpret.com/server/mcp - Ensure there are no extra spaces in your configuration
- Try restarting your AI tool again
- Verify you can access
https://wisdom-api.enterpret.com/server/mcpin your browser
I'm getting "npx command not found" error (Windows)
- Restart your computer after installing Node.js
- Try using the full path:
"C:\\Program Files\\nodejs\\npx.cmd"instead of"npx"
I'm behind a corporate firewall - what do I need?
- Ensure your firewall allows access to npm registry (for downloading
mcp-remote) - HTTPS traffic to
mcp.enterpret.commust be allowed - If behind a corporate proxy, npm and HTTPS requests need proxy configuration
I have access to multiple organizations - how does this work?
Each Enterpret organization uses its own API token to connect to multiple orgs, add a separate mcp-remote entry per org (same URL, unique name, port, and token) in claude_desktop_config.json. See Connecting Claude to Multiple Enterpret Organizations for the full template and steps.
Related Articles
Introduction to Enterpret
Enterpret Features Explained
Wisdom MCP with Claude Plugins
Connecting Claude to Multiple Enterpret Organizations
Enterpret in Notion Custom Agents
Related Servers
Email MCP for Gmail, iCloud and microsoft
Organize, flag, read, delete, and clean email with AI.
Kiwi Travel MCP
Search Flights Without Leaving Your AI Chat
Date-time Tools
A server for date-time manipulation and timezone conversion.
Agentled MCP Server
AI-native workflow orchestration with long-term memory. 100+ integrations through single credit system. 32 MCP tools for building and running intelligent business workflows — lead enrichment, content publishing, company research, media production. Knowledge Graph that learns across executions. Works with Claude, Codex, Cursor, Windsurf.
Productive.io
Interact with the Productive.io API for project management and productivity tasks.
Apple Reminders
Interact with Apple Reminders on macOS.
Marketing Automation MCP Server
Automates marketing operations with AI-powered optimization, real-time analytics, and multi-platform integration.
Kash Business management
Kash.click management assistant. Connect your assistant to your business complete sales history, clients, payments, tax information, employees, points of sales.
Todoist MCP
Interact with your Todoist tasks and projects using your LLM.
MCP Handoff Server
Manages AI agent handoffs with structured documentation and seamless task transitions.