MCP server intelligence profile

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement

Local OnlyOfficial distributionAudienseCo
Verified cleanNpm · 0.2.0

Our scanner tested version 0.2.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
8Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install mcp-audiense-insights from npm

Version 0.2.0 declares 1 executable entrypoint.

npm install --save-exact mcp-audiense-insights@0.2.0
npx -y -p mcp-audiense-insights@0.2.0 audiense-insights
MCP client configuration example
{
  "mcpServers": {
    "mcp-audiense-insights": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "mcp-audiense-insights@0.2.0",
        "audiense-insights"
      ]
    }
  }
}

Identity

Canonical slugaudiense-insights-mcp-server-07838a36DeploymentLocal Only
Canonical packagenpm:mcp-audiense-insightsRepositoryAudienseCo/mcp-audiense-insights
First publishedLatest release
Last security verificationAug 16, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmmcp-audiense-insights0.2.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmmcp-audiense-insights0.2.0CurrentSep 5, 20268 toolsSucceeded · 0 resources · 3 promptsVerified clean
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-2562442858c5f4636c100ba79e04612cd55f9e6da08dc0519ffe5ee4df549ec4049
Scannermcp-proof-engine 0.1.0Scan completedAug 16, 2026
Security rating22 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "audiense-insights"
]
Rating reasons
[
  "security_policy_not_observed"
]
0Proven
516Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
audiense-insightsServer-reported name
2Capability groups
Aug 15, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
compare-audience-influencersCompares the influencers of an audience with a baseline audience. The baseline is determined as follows: If the selection was the full audience and a single country represents more than 50% of the audience, that country is used as the baseline. Otherwise, the Global baseline is applied. If the selection was a specific segment, the full audience is used as the baseline. Each influencer comparison includes: - Affinity (%) - The level of alignment between the influencer and the audience. Baseline Affinity (%) - The influencer’s affinity within the baseline audience. Uniqueness Score - A measure of how distinct the influencer is within the selected audience compared to the baseline.
Input schema
{
  "type": "object",
  "properties": {
    "audience_influencers_id": {
      "type": "string",
      "description": "The ID of the audience influencers."
    },
    "baseline_audience_influencers_id": {
      "type": "string",
      "description": "The ID of the baseline audience influencers."
    },
    "cursor": {
      "type": "number",
      "description": "Cursor for pagination."
    },
    "count": {
      "type": "number",
      "description": "Number of items per page (default: 200)."
    },
    "bio_keyword": {
      "type": "string",
      "description": "Keyword to filter influencers by their biography."
    },
    "entity_type": {
      "type": "string",
      "enum": [
        "person",
        "brand"
      ],
      "description": "Filter by entity type (person or brand)."
    },
    "followers_min": {
      "type": "number",
      "description": "Minimum number of followers."
    },
    "followers_max": {
      "type": "number",
      "description": "Maximum number of followers."
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Filter influencers by categories."
    },
    "countries": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Filter influencers by country ISO codes."
    }
  },
  "required": [
    "audience_influencers_id",
    "baseline_audience_influencers_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-audience-contentRetrieves audience content engagement details for a given audience. This tool provides a detailed breakdown of the content an audience interacts with, including: - **Liked Content**: Popular posts, top domains, top emojis, top hashtags, top links, top media, and a word cloud. - **Shared Content**: Content that the audience shares, categorized similarly to liked content. - **Influential Content**: Content from influential accounts that impact the audience, with similar categorization. Each category contains: - **popularPost**: List of the most engaged posts. - **topDomains**: Most mentioned domains. - **topEmojis**: Most used emojis. - **topHashtags**: Most used hashtags. - **topLinks**: Most shared links. - **topMedia**: Media types shared and samples. - **wordcloud**: Frequently used words.
Input schema
{
  "type": "object",
  "properties": {
    "audience_content_id": {
      "type": "string",
      "description": "The ID of the audience content to retrieve."
    }
  },
  "required": [
    "audience_content_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-audience-insightsRetrieves aggregated insights for a given audience ID, providing statistical distributions across various attributes. Available insights include demographics (e.g., gender, age, country), behavioral traits (e.g., active hours, platform usage), psychographics (e.g., personality traits, interests), and socioeconomic factors (e.g., income, education status).
Input schema
{
  "type": "object",
  "properties": {
    "audience_insights_id": {
      "type": "string",
      "description": "The ID of the audience insights."
    },
    "insights": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional list of insight names to filter."
    }
  },
  "required": [
    "audience_insights_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-baselinesRetrieves available baselines, optionally filtered by country.
Input schema
{
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "ISO country code to filter by."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-categoriesRetrieves the list of available affinity categories that can be used as the categories parameter in the compare-audience-influencers tool.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
get-report-infoRetrieves detailed information about a specific intelligence report, including its status, segmentation type, audience size, segments, and access links.
Input schema
{
  "type": "object",
  "properties": {
    "report_id": {
      "type": "string",
      "description": "The ID of the intelligence report."
    }
  },
  "required": [
    "report_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get-reportsRetrieves the list of Audiense insights reports owned by the authenticated user.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
report-summaryGenerates a comprehensive summary of an Audiense report, including segment details, top insights, and influencers.
Input schema
{
  "type": "object",
  "properties": {
    "report_id": {
      "type": "string",
      "description": "The ID of the intelligence report to summarize."
    }
  },
  "required": [
    "report_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 3

  • audiense-demoaudiense-demo

    A prompt to extract marketing insights and audience understanding from Audiense reports through demographic, cultural, influencer, and content analysis.

  • audiense-demo2audiense-demo2

    A prompt to extract marketing insights and audience understanding from Audiense reports through demographic, cultural, influencer, and content analysis.

  • segment-matchingsegment-matching

    A prompt to match and compare audience segments across Audiense reports, identifying similarities, unique traits, and key insights based on demographics, interests, influencers, and engagement patterns.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Audiense Insights MCP Server questions

How do I install Audiense Insights MCP Server?

Install the selected package version with: npm install --save-exact mcp-audiense-insights@0.2.0

What tools does Audiense Insights MCP Server provide?

Audiense Insights MCP Server exposed 8 tools during independent protocol observation, including compare-audience-influencers, get-audience-content, get-audience-insights, get-baselines, get-categories, get-report-info, get-reports, report-summary.

Is Audiense Insights MCP Server secure?

Our scanner tested version 0.2.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Let’s talk about MCP security.

Share your details and our security team will contact you.