# Consumer Intelligence MCP (`trendsmcp/consumer-intelligence-mcp`) Actor

Consumer intelligence as an MCP tool. Track demand signals, sentiment, and behavioral trends across 25+ sources — the AI-native alternative to Brandwatch Consumer Intelligence.

- **URL**: https://apify.com/trendsmcp/consumer-intelligence-mcp.md
- **Developed by:** [TrendsMCP 25+ data sources, one connection](https://apify.com/trendsmcp) (community)
- **Categories:** AI, MCP servers, Agents
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Consumer Intelligence MCP

Consumer intelligence as an MCP tool. Track demand signals, sentiment, and behavioral trends across 25+ sources — the AI-native alternative to Brandwatch Consumer Intelligence.

**[Get your free API key at trendsmcp.ai](https://trendsmcp.ai)** — 100 requests/month, no credit card.

### Consumer intelligence with AI

Understand what consumers want, feel, and do — across search, social, and commerce. One MCP connection gives your AI the same consumer signals that enterprise platforms charge thousands for.

**Ask your AI things like:**

- *"What are consumers searching for in the health category right now?"*
- *"How has consumer sentiment around 'electric vehicles' changed over 2 years?"*
- *"What's driving TikTok interest in 'protein soda' this quarter?"*
- *"Compare consumer demand for 'GLP-1 drugs' across Google, Amazon, and news."*

***

### Connect in 30 seconds

#### Step 1 — Get your free API key

Sign up at **[trendsmcp.ai](https://trendsmcp.ai)**. Your key arrives by email instantly.

#### Step 2 — Add to your AI client

##### Cursor / Windsurf / VS Code

```json
"trends-mcp": {
  "url": "https://api.trendsmcp.ai/mcp",
  "transport": "http",
  "headers": { "Authorization": "Bearer YOUR_TRENDS_API_KEY" }
}
```

##### Claude Desktop

```json
"trends-mcp": {
  "command": "npx",
  "args": ["-y", "mcp-remote", "https://api.trendsmcp.ai/mcp", "--header", "Authorization:${AUTH_HEADER}"],
  "env": { "AUTH_HEADER": "Bearer YOUR_TRENDS_API_KEY" }
}
```

Full setup guide at **[trendsmcp.ai/docs](https://trendsmcp.ai/docs)**.

***

### Three tools

| Tool | What it does |
|---|---|
| `get_trends` | ~5 years of weekly time-series data for any keyword, normalized 0–100 |
| `get_growth` | % change over any period (7D, 1M, 3M, 6M, 1Y, YTD, ...) across one or many sources |
| `get_top_trends` | What's trending right now — no keyword needed |

***

### All 25+ data sources

| source | Description |
|---|---|
| `google search` | Google search volume |
| `google images` | Google image search volume |
| `google news` | Google News search volume |
| `google shopping` | Google Shopping search volume |
| `youtube` | YouTube search volume |
| `tiktok` | TikTok hashtag volume |
| `reddit` | Reddit subreddit subscriber count |
| `amazon` | Amazon product search volume |
| `wikipedia` | Wikipedia page views |
| `news volume` | News article mention volume |
| `news sentiment` | News sentiment score (positive/negative) |
| `app downloads` | Android app download estimates |
| `app rankings` | Android app store rankings |
| `npm` | npm package weekly downloads |
| `steam` | Steam concurrent players |

***

### Live feeds (no keyword needed)

Google Trends, TikTok Trending Hashtags, YouTube Trending, X (Twitter) Trending, Reddit Hot Posts, Wikipedia Trending, Amazon Best Sellers, App Store Top Free/Paid, Google Play, Spotify Top Podcasts, Steam Most Played, GitHub Trending Repos, IMDb MOVIEmeter, and more.

***

### Pricing

| Plan | Requests/month | Price |
|---|---|---|
| Free | 100 | $0 — no credit card |
| Starter | 1,000 | $19/month |
| Pro | 5,000 | $49/month |
| Business | 25,000 | $199/month |

**[Get your free API key at trendsmcp.ai](https://trendsmcp.ai)**

***

Trends MCP is an independent analytics service. Values are normalized proprietary estimates — not official platform metrics. See [trendsmcp.ai](https://trendsmcp.ai) for terms.

# Actor input Schema

## `trendsApiKey` (type: `string`):

Your API key from trendsmcp.ai. Get one free at https://trendsmcp.ai

## Actor input object example

```json
{}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("trendsmcp/consumer-intelligence-mcp").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("trendsmcp/consumer-intelligence-mcp").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call trendsmcp/consumer-intelligence-mcp --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=trendsmcp/consumer-intelligence-mcp",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/SLDmpFd7LRyq07eg4/builds/EMfL8a7Tya0Uk23gN/openapi.json
