Agent Skill that teaches Claude, Cursor, Codex, Gemini, Windsurf, Copilot, and 40+ other AI coding agents how to research, audit, and extract data from TikTok, Instagram, YouTube, LinkedIn, Twitter (X), and Reddit using the CreatorCrawl social media data API.
Once installed, your agent will autonomously invoke this skill whenever you ask about creators, viral content, hashtag trends, competitor monitoring, influencer prospecting, or anything that needs real, current social-media data.
npx skillkit@latest install creatorcrawl/creatorcrawl-skillThis auto-detects every AI agent on your machine and installs the skill to all of them.
Alternative universal installer:
npx agent-skills-cli add creatorcrawl/creatorcrawl-skill| Agent | Command |
|---|---|
| Claude Code | git clone https://github.com/creatorcrawl/creatorcrawl-skill ~/.claude/skills/creatorcrawl |
| Cursor | git clone https://github.com/creatorcrawl/creatorcrawl-skill ~/.cursor/skills/creatorcrawl |
| Codex / Gemini CLI / Kiro / Antigravity | git clone https://github.com/creatorcrawl/creatorcrawl-skill ~/.agents/skills/creatorcrawl |
| Windsurf | git clone https://github.com/creatorcrawl/creatorcrawl-skill ~/.codeium/windsurf/skills/creatorcrawl |
| OpenClaw | clawhub install creatorcrawl |
| Aider | git clone https://github.com/creatorcrawl/creatorcrawl-skill ~/.aider/skills/creatorcrawl |
Restart your agent (or start a new session). The skill will activate automatically when your prompt matches its trigger description.
The skill teaches your agent how to use CreatorCrawl. You also need the data source itself, which is one of:
# Claude Code
claude mcp add creatorcrawl --transport streamable-http \
--header x-api-key=YOUR_API_KEY \
-- https://app.creatorcrawl.com/api/mcpFor Cursor / Windsurf, add to your mcp.json:
{
"mcpServers": {
"creatorcrawl": {
"type": "streamable-http",
"url": "https://app.creatorcrawl.com/api/mcp",
"headers": { "x-api-key": "YOUR_API_KEY" }
}
}
}npm install @creatorcrawl/sdkimport { CreatorCrawl } from '@creatorcrawl/sdk'
const cc = new CreatorCrawl({ apiKey: process.env.CREATORCRAWL_API_KEY! })
const profile = await cc.tiktok.profile({ handle: 'khaby.lame' })Get an API key at creatorcrawl.com. 250 credits free on signup, no card required.
The agent reads SKILL.md plus on-demand workflow guides in workflows/:
workflows/creator-audit.md— cross-platform creator presence and statsworkflows/viral-content-analyser.md— why a post went viralworkflows/trend-research.md— trending hashtags, sounds, topicsworkflows/competitor-monitoring.md— track competitor accountsworkflows/influencer-prospecting.md— find creators for partnerships
- TikTok — profile, videos, comments, transcripts, search, trending
- Instagram — profile, posts, reels, comments, transcripts, stories, search
- YouTube — channel, videos, shorts, transcripts, comments, playlists, search
- LinkedIn — profile, company, posts, ad library
- Twitter / X — profile, tweets, transcripts, communities
- Reddit — search, subreddits, post comments
60+ tools total. See SKILL.md for the full reference.
- creatorcrawl.com — sign up
- API docs
- TypeScript SDK on npm
- Issues
MIT