Audiense Insights MCP Server

Official

compare-audience-influencers

Compares 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

NameRequiredDescriptionDefault
audience_influencers_idYesThe ID of the audience influencers.
baseline_audience_influencers_idYesThe ID of the baseline audience influencers.
bio_keywordNoKeyword to filter influencers by their biography.
categoriesNoFilter influencers by categories.
countNoNumber of items per page (default: 200).
countriesNoFilter influencers by country ISO codes.
cursorNoCursor for pagination.
entity_typeNoFilter by entity type (person or brand).
followers_maxNoMaximum number of followers.
followers_minNoMinimum number of followers.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "audience_influencers_id": { "description": "The ID of the audience influencers.", "type": "string" }, "baseline_audience_influencers_id": { "description": "The ID of the baseline audience influencers.", "type": "string" }, "bio_keyword": { "description": "Keyword to filter influencers by their biography.", "type": "string" }, "categories": { "description": "Filter influencers by categories.", "items": { "type": "string" }, "type": "array" }, "count": { "description": "Number of items per page (default: 200).", "type": "number" }, "countries": { "description": "Filter influencers by country ISO codes.", "items": { "type": "string" }, "type": "array" }, "cursor": { "description": "Cursor for pagination.", "type": "number" }, "entity_type": { "description": "Filter by entity type (person or brand).", "enum": [ "person", "brand" ], "type": "string" }, "followers_max": { "description": "Maximum number of followers.", "type": "number" }, "followers_min": { "description": "Minimum number of followers.", "type": "number" } }, "required": [ "audience_influencers_id", "baseline_audience_influencers_id" ], "type": "object" }