tokportal-cli
Official@tokportal/cli
TokPortal 是托管式社交基础设施 API:由 16 个以上国家/地区的人类账户经理创建、预热和运营的真实 TikTok、Instagram 和 YouTube 账户——以 REST API 和 MCP 服务器形式提供。无需每个账户的 OAuth,没有每天 25 条帖子的限制,无需应用审核。
文档 https://developers.tokportal.com · API 基础地址 https://app.tokportal.com/api/ext · OpenAPI https://developers.tokportal.com/openapi.json · MCP 远程 https://app.tokportal.com/api/ext/mcp · 获取 API 密钥 https://app.tokportal.com/developer/api-keys · llms.txt https://developers.tokportal.com/llms.txt
@tokportal/cli 是 TokPortal API 的官方命令行界面。每个 API 操作对应一个命令,基于 OpenAPI 生成,JSON 输入/JSON 输出——非常适合脚本、CI 和快速检查。需要 Node 18+。
安装
npm install -g @tokportal/cli
# or without installing:
npx @tokportal/cli get-current-userRelated MCP server: TikTapDown MCP
30 秒快速入门
export TOKPORTAL_API_KEY=sk_your_key_here
# who am I / credit balance
tokportal get-current-user
tokportal get-credit-balance
# create a 1-video TikTok bundle in the USA and capture its id (credits are debited here)
BUNDLE_ID=$(tokportal create-bundle --body '{"bundle_type":"account_and_videos","platform":"tiktok","country":"USA","title":"US launch","videos_quantity":1}' | jq -r .data.id)
# upload the video from disk -> public_url
VIDEO_URL=$(tokportal upload-video-direct --file ./launch.mp4 --bundle_id "$BUNDLE_ID" | jq -r .data.public_url)
# configure the account profile + video slot 1, then publish
tokportal configure-bundle-account --id "$BUNDLE_ID" --body '{"username":"mybrand.us","visible_name":"My Brand","biography":"Official account"}'
tokportal configure-bundle-video --id "$BUNDLE_ID" --position 1 --body "{\"video_type\":\"video\",\"video_url\":\"$VIDEO_URL\",\"description\":\"Day 1 #launch\",\"target_publish_date\":\"2026-09-01\"}"
tokportal get-bundle-publish-readiness --id "$BUNDLE_ID"
tokportal publish-bundle --id "$BUNDLE_ID"
# follow progress
tokportal get-bundle --id "$BUNDLE_ID"
tokportal help # list every generated command参考
npm install -g @tokportal/cli
export TOKPORTAL_API_KEY=sk_your_key_here
tokportal get-current-user
tokportal list-bundles --page 1 --per_page 25
tokportal create-bundle --body '{"bundle_type":"account_and_videos","country":"USA","videos_quantity":5}'
tokportal upload-video-direct --file ./video.mp4 --bundle_id 00000000-0000-0000-0000-000000000000CLI 在 API 请求中发送 X-TokPortal-Client: tokportal-cli/0.1.2,用于可观测性和支持诊断。
多部分上传命令也是从 OpenAPI 生成的。对二进制字段使用 --file <路径>,并将表单字段(如 --bundle_id 或 --auto_publish)作为常规标志传递。
失败的 API 响应会打印一个 diagnostics 对象,其中包含 request_id、retry_after_seconds 和 rate_limit(当这些标头可用时)。
仅对符合条件的变更操作使用 --idempotency-key。CLI 会在本地拒绝用于凭据泄露、验证码检索、Webhook 创建、签名图片/视频上传 URL 创建以及分析报告创建,因为这些响应包含机密信息且不会存储用于重放。
CLI 是从公共 OpenAPI 模式生成的。使用 tokportal help 列出生成的命令。
事实来源
此包是从 TokPortal 公共 OpenAPI 模式(https://developers.tokportal.com/openapi.json)在私有 TokPortal 单体仓库中生成的。生成的文件(src/generated.ts)会在每次发布时被覆盖——请勿手动编辑。有关我们接受的 PR 内容,请参阅 CONTRIBUTING.md;有关漏洞报告,请参阅 SECURITY.md。
链接
SDK 和 CLI 指南:https://developers.tokportal.com/sdks-cli
MCP 服务器:https://developers.tokportal.com/mcp ·
tokportal-mcpAPI 参考(OpenAPI):https://developers.tokportal.com/openapi.json
其他包:
@tokportal/node·@tokportal/cli·tokportal(PyPI) ·github.com/tokportal/tokportal-go
MIT © TokPortal
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
- AlicenseCqualityDmaintenanceMCP server for LamaTok TikTok data API — auto-generates 20+ tools from the live OpenAPI spec (users, videos, hashtags, music, comments). Local stdio via npx -y lamatok-mcp, requires only LAMATOK_KEY.19121MIT
- AlicenseAqualityAmaintenanceTikTok creator toolkit for AI assistants. Four tools: download watermark-free videos by URL, look up curated 15-hashtag sets for 15 niches with strategy tips, retrieve best posting times for 12 countries, and generate viral hook formulas across 8 categories. Stdio transport, runs via npx -y tiktapdown-mcp, no API keys, no signup, free. MIT license.10411MIT
- AlicenseBqualityBmaintenanceProvides 45 MCP tools to search, enrich, and manage Apollo.io B2B data (people, companies, CRM, deals, tasks, sequences, etc.) via stdio or HTTP transport.451MIT

tokportal-mcpofficial
AlicenseBqualityCmaintenanceOfficial MCP server for the TokPortal API, exposing 91 tools to create bundles, upload and publish videos, configure accounts, read analytics, and manage webhooks for real TikTok, Instagram, and YouTube accounts in any MCP client.911,163MIT
Related MCP Connectors
Create, schedule and publish social posts to TikTok, Instagram, Facebook and YouTube.
Publish, schedule, and manage social media posts across major platforms via the Postproxy API.
Social media MCP: publish, schedule & analyze posts on TikTok, Instagram, YouTube, LinkedIn & X
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/tokportal/tokportal-cli'
If you have feedback or need assistance with the MCP directory API, please join our Discord server