tiktok organic mcp for VS Code
io.github.lanternrow/tiktok-organic-mcp
TikTok organic analytics — video performance, engagement metrics, and profile insights.
client:VS Code
transport:stdio
runtime:npm
Install tiktok organic mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tiktok-access-token",
"description": "TIKTOK_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "tiktok-client-key",
"description": "TIKTOK_CLIENT_KEY",
"password": true
},
{
"type": "promptString",
"id": "tiktok-refresh-token",
"description": "TIKTOK_REFRESH_TOKEN",
"password": true
}
],
"servers": {
"tiktok-organic-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tiktok-organic-mcp"
],
"env": {
"TIKTOK_ACCESS_TOKEN": "${input:tiktok-access-token}",
"TIKTOK_CLIENT_KEY": "${input:tiktok-client-key}",
"TIKTOK_REFRESH_TOKEN": "${input:tiktok-refresh-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs