tiktok-trends-mcp
tiktok-trends-mcp
TikTok-Trenddaten für KI-Assistenten Erkenne TikTok-Trends, bevor sie zum Mainstream werden. Verfolge das Volumenwachstum von Hashtags, virale Spitzen und plattformspezifische Nachfragesignale – alles in natürlicher Sprache über deine KI zugänglich.
Vollständige Dokumentation und Live-Demo: https://trendsmcp.ai/tiktok-trends
Teil von Trends MCP – dem MCP-Server für Live-Trenddaten aus über 12 Quellen. Siehe das Haupt-Repository: https://github.com/trendsmcp/trends-mcp
Erste Schritte in 2 Schritten
Schritt 1: Hol dir deinen kostenlosen API-Schlüssel unter trendsmcp.ai 100 Anfragen/Tag, keine Kreditkarte erforderlich.
Schritt 2: Füge ihn zu deinem KI-Client hinzu (ersetze YOUR_API_KEY):
+ Zu Cursor hinzufügen (ein Klick)
Cursor / Windsurf / Cline (~/.cursor/mcp.json oder entsprechend)
{
"mcpServers": {
"trends-mcp": {
"url": "https://api.trendsmcp.ai/mcp",
"transport": "http",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}VS Code / GitHub Copilot (.vscode/mcp.json)
{
"servers": {
"trends-mcp": {
"type": "http",
"url": "https://api.trendsmcp.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}Claude Desktop (claude_desktop_config.json)
Benutzer → Einstellungen → Entwickler → Konfiguration bearbeiten – innerhalb von mcpServers einfügen
{
"mcpServers": {
"trends-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.trendsmcp.ai/mcp",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer YOUR_API_KEY"
}
}
}
}Claude.ai (Browser) Einstellungen -> Verbindungen -> Benutzerdefinierte Verbindung hinzufügen:
https://api.trendsmcp.ai/mcpRelated MCP server: TikTok Complete MCP Server
Beispielabfrage
Nach dem Verbinden frage deine KI:
get_trends(keyword='booktok', source='tiktok', data_mode='weekly')Verfügbare Tools
Tool | Funktion |
| Zeitreihe für ein Keyword auf dieser Quelle |
| Wachstums-% über 1W, 1M, 3M, 6M, 1Y-Zeiträume |
| Was gerade auf dieser Quelle im Trend liegt |
| Top-Themen nach Volumen sortiert |
FAQ
Welche TikTok-Daten stellt Trends MCP bereit?
TikTok-Hashtag-Trendvolumen – normalisiertes Interesse, Wachstumsrate und historische Zeitreihen. Dies spiegelt wider, wie häufig ein Hashtag auf der Plattform erscheint und im Laufe der Zeit wächst.
Wie früh kann ich einen TikTok-Trend erkennen?
Trends MCP liefert wöchentliche und tägliche Daten. Tägliche Daten (letzte 30 Tage) ermöglichen es dir, frühe Wachstumsspitzen zu erkennen, bevor ein Hashtag die Mainstream-Sättigung erreicht.
Kann ich TikTok-Trends mit der Google-Suche vergleichen?
Ja. Frage beide Quellen in einem Aufruf ab. TikTok zeigt oft 2-4 Wochen vor demselben Thema in der Google-Suche Spitzen an, was den plattformübergreifenden Vergleich zu einer Frühindikator-Strategie macht.
Funktioniert dies auch für Markenmonitoring auf TikTok?
Ja. Verfolge einen Markennamen oder Produkt-Hashtag im Zeitverlauf, um das TikTok-Präsenzwachstum im Vergleich zu Wettbewerbern zu messen.
Sind TikTok-Hashtags case-sensitiv?
Nein. Die Abfrage wird vor der Suche normalisiert. Du kannst 'booktok', 'BookTok' oder '#booktok' verwenden – alle liefern dasselbe Signal.
Alle Datenquellen
Trends MCP deckt über 12 Quellen in einer Verbindung ab: Google Search, YouTube, TikTok, Reddit, Amazon, Wikipedia, Nachrichtenstimmung, Web-Traffic, App-Downloads, Steam, npm und mehr.
Alle durchsuchen: https://trendsmcp.ai/data-sources
Funktioniert auch als Python-Client
Derselbe API-Schlüssel funktioniert direkt in Python – kein MCP-Host erforderlich.
pip install tiktok-trends-mcpimport os
from tiktok_trends_mcp import TrendsMcpClient, SOURCE
client = TrendsMcpClient(api_key=os.environ["TRENDSMCP_API_KEY"])
series = client.get_trends(source=SOURCE, keyword="your keyword")
growth = client.get_growth(source=SOURCE, keyword="your keyword", percent_growth=["1M", "3M", "12M"])
top = client.get_top_trends(type="Tiktok", limit=10)Vollständige Python-Dokumentation: trendsmcp.ai/docs
Lizenz
MIT © Trends MCP
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceEnables access to TikTok data without watermarks, including trending users, hashtags, post analytics, user profiles, and download links for specific countries. Supports searching by username, user ID, or post links.10MIT
- Flicense-qualityDmaintenanceEnables AI assistants to download TikTok videos without watermarks, analyze creator metrics and audience insights, track trending content and hashtags, and search videos, users, and sounds through RapidAPI integration.
- Alicense-qualityBmaintenanceProvides TikTok hashtag trend data including volume growth, viral spikes, and historical time series, enabling AI assistants to spot emerging trends before they go mainstream.MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to access TikTok organic analytics including video performance, engagement metrics, and profile insights via the TikTok Developer API.536MIT
Related MCP Connectors
Cross-platform social trend signals from TikTok, YouTube, Reddit and X. Free key at trendsapi.ai
Trend data from Google Trends, YouTube, TikTok, Reddit, Amazon, Wikipedia, npm, Steam and more
Cross-platform social media intelligence. Trend volume and growth signals. Free key at trendsmcp.ai
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/trendsmcp-ai/tiktok-trends-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server