This MCP server enables Claude and other MCP-compatible clients to access your Audiense Insights account, providing marketing insights and audience analysis from Audiense reports, including demographic, cultural, influencer, and content engagement data.
Before using the Audiense Insights MCP server, ensure you have:
Open the configuration file for Claude Desktop:
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
code %AppData%\Claude\claude_desktop_config.json
Add or update the following configuration:
"mcpServers": {
"audiense-insights": {
"command": "npx",
"args": [
"-y",
"mcp-audiense-insights"
],
"env": {
"AUDIENSE_CLIENT_ID": "your_client_id_here",
"AUDIENSE_CLIENT_SECRET": "your_client_secret_here",
"TWITTER_BEARER_TOKEN": "your_token_here"
}
}
}
Save the file and restart Claude Desktop.
get-reports
Description: Retrieves the list of Audiense insights reports owned by the authenticated user.
get-report-info
Description: Fetches detailed information about a specific intelligence report, including status, segmentation type, audience size, segments, and access links.
report_id
(string): The ID of the intelligence report.get-audience-insights
Description: Retrieves aggregated insights for a given audience, including demographics, behavioral traits, psychographics, and socioeconomic factors.
audience_insights_id
(string): The ID of the audience insights.insights
(array of strings, optional): List of specific insight names to filter.get-baselines
Description: Retrieves available baseline audiences, optionally filtered by country.
country
(string, optional): ISO country code to filter by.get-categories
Description: Retrieves the list of available affinity categories for influencer comparisons.
compare-audience-influencers
Description: Compares influencers of a given audience with a baseline audience, providing affinity scores and uniqueness metrics.
audience_influencers_id
(string): ID of the audience influencers.baseline_audience_influencers_id
(string): ID of the baseline audience influencers.cursor
(number, optional): Pagination cursor.count
(number, optional): Number of items per page (default: 200).bio_keyword
(string, optional): Filter influencers by bio keyword.entity_type
(enum: person
| brand
, optional): Filter by entity type.followers_min
(number, optional): Minimum number of followers.followers_max
(number, optional): Maximum number of followers.categories
(array of strings, optional): Filter influencers by categories.countries
(array of strings, optional): Filter influencers by country ISO codes.get-audience-content
Description: Retrieves audience content engagement details, including liked content, shared content, and influential content.
audience_content_id
(string): The ID of the audience content.report-summary
Description: Generates a comprehensive summary of an Audiense report, including metadata, audience size, segment information, top insights, and top influencers.
report_id
(string): The ID of the intelligence report to summarize.This server includes preconfigured prompts:
audiense-demo
: Helps analyze Audiense reports interactively.segment-matching
: Matches and compares audience segments across Audiense reports.Usage:
tail -f ~/Library/Logs/Claude/mcp*.log
To check server logs:
tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
Get-Content -Path "$env:AppData\Claude\Logs\mcp*.log" -Wait -Tail 20
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "audiense-insights" '{"command":"npx","args":["-y","mcp-audiense-insights"],"env":{"AUDIENSE_CLIENT_ID":"your_client_id_here","AUDIENSE_CLIENT_SECRET":"your_client_secret_here","TWITTER_BEARER_TOKEN":"your_token_here"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"audiense-insights": {
"command": "npx",
"args": [
"-y",
"mcp-audiense-insights"
],
"env": {
"AUDIENSE_CLIENT_ID": "your_client_id_here",
"AUDIENSE_CLIENT_SECRET": "your_client_secret_here",
"TWITTER_BEARER_TOKEN": "your_token_here"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"audiense-insights": {
"command": "npx",
"args": [
"-y",
"mcp-audiense-insights"
],
"env": {
"AUDIENSE_CLIENT_ID": "your_client_id_here",
"AUDIENSE_CLIENT_SECRET": "your_client_secret_here",
"TWITTER_BEARER_TOKEN": "your_token_here"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect