tiktok creator for VS Code
io.github.wmarceau/tiktok-creator
TikTok automation: post videos, get analytics, manage comments
client:VS Code
transport:stdio
runtime:pypi
Install tiktok creator in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tiktok-client-key",
"description": "TIKTOK_CLIENT_KEY",
"password": true
},
{
"type": "promptString",
"id": "tiktok-client-secret",
"description": "TIKTOK_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "tiktok-access-token",
"description": "TIKTOK_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "tiktok-refresh-token",
"description": "TIKTOK_REFRESH_TOKEN",
"password": true
}
],
"servers": {
"tiktok-creator": {
"type": "stdio",
"command": "uvx",
"args": [
"tiktok-creator-mcp"
],
"env": {
"TIKTOK_CLIENT_KEY": "${input:tiktok-client-key}",
"TIKTOK_CLIENT_SECRET": "${input:tiktok-client-secret}",
"TIKTOK_ACCESS_TOKEN": "${input:tiktok-access-token}",
"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