Package Exports
- @pullapi/tiktok-scraper-mcp
- @pullapi/tiktok-scraper-mcp/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@pullapi/tiktok-scraper-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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