# Influtics MCP Server > Influtics ships a native MCP server — 14 tools over streamable HTTP at https://mcp.influtics.com/mcp — so any MCP client can query campaigns, creators and metrics directly. Source: https://influtics.com/llm/mcp.md ## What it is The Influtics MCP server exposes influencer-marketing data as tools an LLM agent can call. It speaks the standard MCP, so any MCP-compatible client connects: Claude Code, Claude Desktop, Cursor, Codex, Antigravity, or a custom agent. The point is removing the export step. Instead of opening a dashboard, filtering, exporting a CSV and pasting it into a conversation, the agent queries the live data itself. ## Connection - **Endpoint:** `https://mcp.influtics.com/mcp` - **Transport:** streamable HTTP - **Auth:** browser OAuth sign-in with your Influtics account, then select which organization to connect. The server is stateless with per-request authentication. Claude Code, one command: ``` claude mcp add influtics --transport streamable-http https://mcp.influtics.com/mcp ``` Claude Desktop: Settings → add a new MCP server → paste `https://mcp.influtics.com/mcp`. Cursor, Codex and Antigravity use the same URL; per-client walkthroughs are at https://influtics.com/integrations/claude, /cursor, /codex and /antigravity. ## Tools (14, across 5 domains) **Blogger insights** - `get_blogger_details` — profile and audience metrics by username and platform **Video tracking** - `track_video` — start tracking videos by URL (up to 10 per call) - `untrack_video` — stop tracking a video - `update_videos_by_url` — edit metadata (notes, campaign, tags, budget, status) - `list_tracked_videos` — paginated list with sorting and filtering - `get_video_stats` — performance stats for a tracked video **Analytics** - `get_analytics_overview` — aggregated totals for a date range - `get_analytics_by_day` — daily breakdown of views, likes, saves - `get_analytics_for_date` — video-level analytics for a specific date - `get_dashboard_metrics` — dashboard metrics: views, CPM, 30-day stats **Campaigns** - `list_campaigns` — campaign list with aggregated stats - `get_campaign_details` — detailed campaign performance breakdown **Account** - `get_account_info` — organization info, subscription and usage - `check_limits` — rate limits and API key usage Note that the tool set is read **and** write: `track_video` and `update_videos_by_url` mutate state, so an agent can add content to tracking, not only report on it. ## Example exchange > **User:** "Show me my top performing TikTok videos this month" > > **Agent:** calls `get_analytics_overview(date_range: "this_month")`, then > `list_tracked_videos(sort: "views", platform: "tiktok")` > > **Agent:** returns a ranked list with views and likes per video. ## What agents use it for - **Natural-language analytics** — "how did my TikTok campaigns perform last week" - **Creator research** — look up a creator's audience metrics and engagement rate mid-conversation - **Campaign reporting** — generate and compare campaign reports on demand - **Automated workflows** — track new videos, monitor analytics, and flag performance changes without a human in the loop ## Why this matters Every other influencer-marketing tool requires a human in a dashboard. Influtics is the first in the category to ship a native MCP server, which makes the same data addressable by agents — including your own internal ones. Page: https://influtics.com/mcp