Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

tokportaltokportal 分析

Agent Skill

tokportal 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

24,861

周安装

1,057

GitHub Stars

3

下载量

8,710
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tokportal(tokportal 分析)
来源仓库:https://github.com/naybu256/tokportal
安装命令:
openclaw skills install tokportal
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tokportal

简介

通过 30 个 AI 原生工具自动化 TikTok 与 Instagram 内容分发。

  • 适用于账户创建、视频上传与分析等社交媒体运营任务。
  • 通过 clawhub 安装,需确认平台 API 密钥与内容审核策略。
  • 建议核实视频版权归属与平台政策合规性。tokportal 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 可查阅原始文档了解账号绑定流程与数据分析维度。

SKILL.md

name
tokportal
description
Automate social media at scale — create TikTok/Instagram accounts, distribute videos, upload content, and track analytics with 30 AI-native MCP tools via the TokPortal API.
version
1.0.0
homepage
https://developers.tokportal.com
metadata
{"openclaw":{"emoji":"🎵","homepage":"https://developers.tokportal.com","requires":{"env":["TOKPORTAL_API_KEY"]},"primaryEnv":"TOKPORTAL_API_KEY"}}

TokPortal

Manage mass social media account creation, video distribution, and analytics via the TokPortal platform. This skill exposes 30 tools through a dedicated MCP server, giving your AI agent full control over TikTok and Instagram operations at scale.

Setup

1. Get your API key

Sign up at tokportal.com and generate an API key at app.tokportal.com/developer/api-keys.

2. Install the MCP server

The recommended way to use TokPortal with OpenClaw is via the MCP server:

npm install -g tokportal-mcp

3. Configure OpenClaw

Add to your ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "tokportal": {
        "enabled": true,
        "apiKey": "tok_live_your_key_here"
      }
    }
  }
}

Or set the environment variable:

export TOKPORTAL_API_KEY="tok_live_your_key_here"

4. Add MCP server config

Add to your MCP configuration (Cursor .cursor/mcp.json or Claude Desktop claude_desktop_config.json):

{
  "mcpServers": {
    "tokportal": {
      "command": "npx",
      "args": ["-y", "tokportal-mcp"],
      "env": {
        "TOKPORTAL_API_KEY": "tok_live_your_key_here"
      }
    }
  }
}

Available Tools (30)

Info (6 tools)

  • get_me — Your profile, credit balance, and API key info
  • get_credit_balance — Detailed balance with expiration dates
  • get_credit_history — Transaction history (paginated)
  • get_countries — Available countries for account creation
  • get_platforms — Supported platforms (TikTok, Instagram) with features
  • get_credit_costs — Full credit cost grid for all actions

Bundles (8 tools)

  • create_bundle — Create a bundle (account only, account + videos, or videos only)
  • create_bulk_bundles — Performance Max: create multiple bundles at once
  • list_bundles — List bundles with status/platform filters
  • get_bundle — Full bundle state including account config and videos
  • publish_bundle — Publish a configured bundle (goes live to account managers)
  • unpublish_bundle — Pull a bundle back to draft
  • add_video_slots — Add video slots to an existing bundle (2 credits/slot)
  • add_edit_slots — Add editing slots (3 credits/slot)

Account Configuration (4 tools)

  • get_account_config — View current account setup
  • configure_account — Set username, display name, bio, profile picture
  • finalize_account — Approve an account that is in review
  • request_account_corrections — Request fixes on specific fields

Videos (6 tools)

  • list_videos — List all videos in a bundle
  • configure_video — Set up a single video (caption, publish date, media URL, sound settings)
  • batch_configure_videos — Configure multiple videos at once
  • finalize_video — Approve a video in review
  • request_video_corrections — Request fixes on a video
  • unschedule_video — Cancel a scheduled video

Delivered Accounts (3 tools)

  • list_accounts — List your delivered accounts with filters
  • get_account_detail — Full credentials + TokMail email for an account
  • get_verification_code — Retrieve the latest 6-digit verification code

Analytics (4 tools)

  • get_analytics — Followers, views, engagement rate, and more
  • refresh_analytics — Trigger an analytics refresh (48h cooldown, 500/month quota)
  • can_refresh_analytics — Check if a refresh is available
  • get_video_analytics — Per-video analytics (views, likes, engagement)

Uploads (2 tools — MCP only)

  • upload_video — Upload a local video file, returns a public URL
  • upload_image — Upload a local image file (for carousels or profile pictures)

Example Workflows

Create a TikTok account with 5 videos

"Create a TikTok bundle in the US with 5 videos and niche warming for fitness content"

The agent will call create_bundle with the right params, then guide you through account and video configuration.

Check your account analytics

"Show me the analytics for all my delivered accounts"

The agent will call list_accounts, then get_analytics for each.

Bulk video distribution

"Create 10 TikTok accounts in France with 3 videos each"

Uses create_bulk_bundles (Performance Max) to create all bundles in one call.

API Reference

  • Base URL: https://app.tokportal.com/api/ext
  • Auth: X-API-Key header
  • Rate limit: 120 requests/minute per API key
  • Full docs: developers.tokportal.com

Credit System

TokPortal uses a credit-based model (1 credit = $1):

  • Account creation: 5-8 credits depending on country
  • Video upload: 2 credits per video
  • Niche warming: 7 credits
  • Deep warming (Instagram): 40 credits
  • Comment moderation: 25 credits
  • Video editing: 3 credits per edit slot

Support

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.85%
按下载量换算7,042

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills