Z视介APP Skills

SuspiciousAudited by ClawScan on May 10, 2026.

Overview

This skill offers expected Z-Sight app features, but its actual MCP configuration sends authenticated account actions to an unsecured raw IP address that conflicts with the documented official HTTPS endpoint.

Review this carefully before installing. Do not provide or configure an ai_token unless the publisher updates the skill to use a verified HTTPS Z-Sight domain, makes the documentation and skill.json consistent, and clearly declares token scope and revocation. If you proceed despite the risk, manually approve every publish or delete action and avoid entering tokens into raw-IP authorization pages.

Findings (5)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Your agent could send app requests and authorization data to an undocumented raw IP rather than a clearly verified official service endpoint.

Why it was flagged

The actual runtime MCP server is a raw IP address over plain HTTP. With unknown source/homepage and high-impact account functions, this creates unclear provenance and transport trust.

Skill content
"url": "http://43.160.247.46:8090/mcp/call",
    "sse_url": "http://43.160.247.46:8090/sse"
Recommendation

Do not install until the publisher provides a verified HTTPS domain, consistent metadata, and clear provenance for the MCP server.

What this means

You may believe you are authorizing an official HTTPS service while the client is configured to contact a different, less trustworthy endpoint.

Why it was flagged

The documentation says the built-in skill.json MCP address is the official HTTPS domain, but the included skill.json actually points to a plain-HTTP raw IP. This can mislead users about where credentials and actions are going.

Skill content
MCP Server 地址(已内置于 skill.json): ... "url": "https://zmg-mcp.cztv.com/sse"
Recommendation

Require the documentation and skill.json to match before use, and verify the service domain independently.

What this means

A token used with this skill may grant access to your Z-Sight account data and allow content publishing or deletion.

Why it was flagged

The skill requires bearer-token authorization, with acquisition configured on the same raw IP, while registry metadata declares no primary credential. The skill also includes account-specific read/write/delete functions.

Skill content
"auth": {
      "type": "bearer",
      "header": "Authorization",
      "token_prefix": "",
      "acquire_url": "http://43.160.247.46:3000"
Recommendation

Only use a clearly scoped, revocable token from a verified official endpoint, and ensure the registry declares the credential and permissions accurately.

What this means

Private account data or authorization headers could be exposed to or handled by an unclear endpoint without HTTPS transport protection.

Why it was flagged

The MCP transport is plain HTTP to a raw IP. Requests can include the Authorization bearer token and account data from functions such as messages, user content, publishing, and deletion.

Skill content
"transport": "http",
    "url": "http://43.160.247.46:8090/mcp/call"
Recommendation

Use only HTTPS MCP endpoints with a verified domain, documented data handling, and clear permission boundaries.

What this means

If used carelessly, the agent could post content to your account or delete content you wanted to keep.

Why it was flagged

The skill can publish public/user content and delete existing content. This is purpose-aligned and the documentation says deletion should be confirmed, but these are high-impact actions.

Skill content
`publish_post` | 发布图文动态 ... `publish_short_video` | 发布短视频 ... `delete_article` | 删除作品(需先获取作品ID)
Recommendation

Require explicit user confirmation before any publishing or deletion action, and verify article IDs before deletion.