@pullapi/tiktok-scraper-mcp
v1.0.0
Published
TikTok MCP server — user profiles & video details. For Claude, Cursor & AI agents.
Maintainers
Readme
TikTok Scraper MCP Server
An MCP server that provides real-time TikTok data — user profiles with follower counts and verification status, plus video details with play counts and engagement metrics — for use with Claude, Cursor, and other MCP-compatible AI tools.
Features
- Get Profile — Get a TikTok user's profile including bio, follower counts, and verification status
- Get Video — Get TikTok video details including play counts, likes, comments, and download URL
Tools
get_profile
Get a TikTok user's profile including bio, follower counts, and verification status
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| username | string | Yes | TikTok username (without @) |
get_video
Get TikTok video details including play counts, likes, comments, and download URL
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| video_id | string | Yes | TikTok video ID |
Configuration
Get your API key from RapidAPI.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"tiktok": {
"command": "npx",
"args": ["-y", "@pullapi/tiktok-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"tiktok": {
"command": "npx",
"args": ["-y", "@pullapi/tiktok-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}License
MIT
