feat(tiktok): expose tiktok.scrape on MCP, chat subagent, playground

This commit is contained in:
CREDO23 2026-07-08 20:20:20 +02:00
parent 2943d8b23c
commit ed1c3a1f3d
15 changed files with 248 additions and 2 deletions

View file

@ -3,6 +3,7 @@ import {
GoogleMapsIcon,
GoogleSearchIcon,
RedditIcon,
TikTokIcon,
WebIcon,
YouTubeIcon,
} from "./platform-icons";
@ -48,6 +49,12 @@ export const PLAYGROUND_PLATFORMS: PlaygroundPlatform[] = [
{ name: "youtube.comments", verb: "comments", label: "Comments" },
],
},
{
id: "tiktok",
label: "TikTok",
icon: TikTokIcon,
verbs: [{ name: "tiktok.scrape", verb: "scrape", label: "Scrape" }],
},
{
id: "google_maps",
label: "Google Maps",

View file

@ -24,6 +24,7 @@ function brandIcon(src: string, alt: string) {
export const RedditIcon = brandIcon("/connectors/reddit.svg", "Reddit");
export const YouTubeIcon = brandIcon("/connectors/youtube.svg", "YouTube");
export const TikTokIcon = brandIcon("/connectors/tiktok.svg", "TikTok");
export const GoogleMapsIcon = brandIcon("/connectors/google-maps.svg", "Google Maps");
export const GoogleSearchIcon = brandIcon("/connectors/google-search.svg", "Google Search");
export const WebIcon = brandIcon("/connectors/web.svg", "Web");