# Trend Forecasting MCP (`trendsmcp/trend-forecasting-mcp`) Actor

Trend forecasting and emerging trend detection as an MCP tool. Spot what is breaking out before it peaks across 25+ sources.

- **URL**: https://apify.com/trendsmcp/trend-forecasting-mcp.md
- **Developed by:** [TrendsMCP 25+ data sources, one connection](https://apify.com/trendsmcp) (community)
- **Categories:** AI, Agents, MCP servers
- **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

## Trend Forecasting MCP

Trend forecasting and emerging trend detection as an MCP tool. Spot what is breaking out before it peaks across 25+ sources.

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

### Trend forecasting with AI

Detect breakout trends weeks before they go mainstream. Track acceleration signals across search, social, and commerce in one query.

**Ask your AI things like:**

- *"What topics are showing accelerating growth on Google Search right now?"*
- *"Which TikTok hashtags grew more than 200% in the last 3 months?"*
- *"Is 'AI wearables' in early-stage growth or mainstream adoption?"*
- *"What are the fastest-growing categories on Amazon Best Sellers this quarter?"*

***

### 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/trend-forecasting-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/trend-forecasting-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/trend-forecasting-mcp --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/6EHPXyGJmUUthUAev/builds/J2ZbDbEK0tuEaIr5S/openapi.json
