# Viral Hook MCP — Hook Formulas for Creators & AI Agents (`elisabethhitz/viral-hook-mcp`) Actor

Hook formulas for creators and AI agents. 10 hook styles (contrarian, curiosity gap, pattern interrupt, confession, story open...) as fill-in structures, niche-tuned examples across 10 niches, and a rewrite-as-hook tool that turns any topic into a scroll-stopping opener.

- **URL**: https://apify.com/elisabethhitz/viral-hook-mcp.md
- **Developed by:** [Elisabeth](https://apify.com/elisabethhitz) (community)
- **Categories:** AI, Agents, Social media
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $50.00 / 1,000 tool calls

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## 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

## Viral Hook MCP — Hook Formulas for Creators & AI Agents

**The first 2 seconds decide everything. This MCP gives your AI agent the hook mechanics, not guesses.**

### What it does

Provide a topic or a draft opener — get back structured hook formulas, niche-tuned examples, and rewrites. Built from patterns that survive across platforms (TikTok, Reels, Shorts, X, LinkedIn), not one-week trend templates.

### 5 Tools

| Tool | What it returns |
|---|---|
| `get_hook_formulas` | The 10 hook styles as fill-in structures with why each works and its failure mode |
| `get_hook_examples` | Niche-tuned examples for your niche (10 niches: business, AI/tech, fitness, parenting, marketing, finance, ecommerce, content creation, productivity, lifestyle) |
| `rewrite_as_hook` | Turns your topic or draft line into openers across multiple hook styles |
| `get_niches` | Lists supported niches |
| `get_full_hook_library` | The complete library in one payload for agent context |

### Hook styles covered

contrarian · specific\_number · curiosity\_gap · bold\_claim · confession · stop\_doing · pattern\_interrupt · story\_open · question\_hook · future\_pace

### Pricing

Apify pay-per-event: from $0.05 per tool call. First calls free to test.

### Part of a 17-server family

Cold outreach, creator deals, deliverability, compliance, and sales intelligence MCPs: [github.com/closermethod](https://github.com/closermethod) · [MCP Hub](https://elisabethhitz-mcp.netlify.app)

### Built by

[Elisabeth Hitz](https://www.linkedin.com/in/elisabethhitz) — 10+ years enterprise sales (Deel, Criteo, HBO), reverse-engineered for creators.

# Actor input Schema

## `tool` (type: `string`):

Which Viral Hook MCP — Hook Formulas for Creators & AI Agents tool to call

## `niche` (type: `string`):

Content niche

## `style` (type: `string`):

Hook style for rewrite

## `text` (type: `string`):

Text to rewrite as a hook (used by rewrite\_as\_hook)

## Actor input object example

```json
{
  "tool": "get_hook_formulas",
  "niche": "fitness_health",
  "style": "contrarian",
  "text": "Default text"
}
```

# 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 = {
    "tool": "get_hook_formulas"
};

// Run the Actor and wait for it to finish
const run = await client.actor("elisabethhitz/viral-hook-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 = { "tool": "get_hook_formulas" }

# Run the Actor and wait for it to finish
run = client.actor("elisabethhitz/viral-hook-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 '{
  "tool": "get_hook_formulas"
}' |
apify call elisabethhitz/viral-hook-mcp --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/Kyl6NgWIABtMnt8Cn/builds/pddanNEh4EvkACbUb/openapi.json
