AI Agents

TokPortal + OpenClaw

Use the TokPortal OpenClaw skill path to expose TokPortal MCP tools for bundle creation, video configuration, publishing, and analytics.

TokPortal + OpenClaw

TokPortal has an OpenClaw integration path through ClawHub. The important technical detail is that the skill exposes the same public TokPortal API surface as the MCP server: bundles, account configuration, videos, webhooks, uploads, accounts, and analytics.

Install

clawhub install tokportal

Skill page: clawhub.ai/naybu256/tokportal

Configure

Set a TokPortal API key from the Developer Portal.

Depending on your OpenClaw setup, configure the key either in the skill config or as an environment variable:

TOKPORTAL_API_KEY=sk_your_key_here

What the agent can do

The agent can only do what the public API supports. It can call generated tools such as:

ToolAPI surface
tokportal_get_credit_balanceGET /credits/balance
tokportal_create_bundlePOST /bundles
tokportal_create_bundles_bulkPOST /bundles/bulk
tokportal_configure_bundle_accountPUT /bundles/{id}/account
tokportal_configure_bundle_videoPUT /bundles/{id}/videos/{position}
tokportal_batch_configure_bundle_videosPUT /bundles/{id}/videos/batch
tokportal_publish_bundlePOST /bundles/{id}/publish
tokportal_get_account_analyticsGET /accounts/{id}/analytics

See the full MCP tool list.

Safe prompt pattern

Ask the agent to plan, show the API payload, then wait for confirmation before calling mutating tools:

"Create a draft plan for a US TikTok bundle with 5 videos and niche warming. Show the exact tokportal_create_bundle payload and estimated credit cost. Do not execute until I confirm."

Then approve once the payload matches the API docs:

{
  "bundle_type": "account_and_videos",
  "platform": "tiktok",
  "country": "US",
  "videos_quantity": 5,
  "wants_niche_warming": true,
  "niche_warming_instructions": "Fitness and gym content.",
  "external_ref": "openclaw-fitness-us"
}

Realistic workflow

  1. Check credits with tokportal_get_credit_balance.
  2. Create a bundle with tokportal_create_bundle.
  3. Configure account profile fields with tokportal_configure_bundle_account.
  4. Configure videos from public URLs or uploaded media with tokportal_configure_bundle_video.
  5. Publish with tokportal_publish_bundle.
  6. Monitor bundle status, webhook events, or analytics.

The agent should not promise organic reach, view counts, or platform enforcement outcomes. TokPortal exposes operational workflow tools; performance still depends on content, platform behavior, timing, and account state.

Related docs: OpenClaw Integration, MCP Server, Create Bundle, Configure Videos, Analytics.