skills — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited skills (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
The weibo-cli is a command-line interface tool for interacting with Weibo data without using the MCP protocol. It provides direct access to all Weibo functionality through simple terminal commands.
# Run with uvx (recommended)
uvx --from mcp-server-weibo weibo-cli --help
# Or run with uv tool
uv tool install mcp-server-weibo
weibo-cli --helpFor operations involving users (profile, feeds, followers, fans), you need to first search for the user to get their UID:
1. Search users → Get UID
↓
2. Use UID for subsequent operationsExample: Get a specific user's feeds
# Step 1: Search for user to get UID
weibo-cli users "雷军" -n 5
# Step 2: Use the UID (1749127163) to get feeds
weibo-cli feeds 1749127163 -n 10Example: Get someone's followers
# Step 1: Search users
weibo-cli users "科技博主" -n 5
# Step 2: Use UID to get followers
weibo-cli followers <UID> -n 20For searching posts/content by keyword, use the search command directly:
# Search posts containing keywords
weibo-cli search "人工智能" -n 20For searching hashtags/topics:
# Search topics
weibo-cli topics "演唱会" -n 10Get current trending topics directly:
# Get trending hot searches
weibo-cli trending -n 15Getting comments requires a feed_id, which can be obtained from feed results:
1. Search users → Get UID
↓
2. Get feeds → Get feed IDs
↓
3. Use feed_id to get commentsExample: Get comments on a specific post
# Step 1: Get the user's feeds
weibo-cli feeds 1749127163 -n 10
# Step 2: Use the feed id from results to get comments
weibo-cli comments <FEED_ID> -p 1Get user profile information by UID.
weibo-cli profile <UID>Example:
weibo-cli profile 1749127163Output: JSON object with user details (id, screen_name, description, followers_count, etc.)
Get user posts (weibo feeds).
weibo-cli feeds <UID> [-n LIMIT]Example:
weibo-cli feeds 1749127163 -n 10Output: JSON array of feed items with text, source, created_at, comments_count, attitudes_count, reposts_count, etc.
Search for posts containing specific keywords.
weibo-cli search <KEYWORD> [-n LIMIT] [-p PAGE]Example:
weibo-cli search "人工智能" -n 20 -p 1Output: JSON array of matching posts with user info, timestamps, and engagement metrics.
Search for Weibo users by keyword.
weibo-cli users <KEYWORD> [-n LIMIT] [-p PAGE]Example:
weibo-cli users "科技" -n 10Output: JSON array of user profiles matching the search term.
Search for Weibo topics (hashtags).
weibo-cli topics <KEYWORD> [-n LIMIT] [-p PAGE]Example:
weibo-cli topics "演唱会" -n 10Output: JSON array of topic items with title, description, and URL.
Get current trending/hot search items.
weibo-cli trending [-n LIMIT]Example:
weibo-cli trending -n 15Output: JSON array of trending items with rank, description, and热度值.
Get comments for a specific post.
weibo-cli comments <FEED_ID> [-p PAGE]Example:
weibo-cli comments 5173507416919189 -p 1Output: JSON array of comments with user info, text, and timestamps.
Get a user's followers.
weibo-cli followers <UID> [-n LIMIT] [-p PAGE]Example:
weibo-cli followers 1749127163 -n 20Output: JSON array of user profiles who follow this user.
Get a user's fans (people who follow this user).
weibo-cli fans <UID> [-n LIMIT] [-p PAGE]Example:
weibo-cli fans 1749127163 -n 20Output: JSON array of user profiles who are fans of this user.
| Option | Description | Default |
|---|---|---|
-n, --limit | Maximum number of results | varies by command |
-p, --page | Page number for pagination | 1 |
0: Success1: Error (network failure, invalid arguments, etc.)All errors are logged to stderr and displayed as error messages. The CLI will exit with code 1 if any operation fails.
users to get the UID before using profile, feeds, followers, or fansfeed_id from feeds results before using comments-p option to navigate through multiple pages of results-n option to control how many results to fetch~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.