mcp-server-weibo
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| COOKIE | Yes | Your Weibo cookie string, required for API calls |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_usersA | 根据关键词搜索微博用户。 返回: list[dict]: 包含用户信息的字典列表 |
| get_profileB | 获取微博用户资料信息。 返回: dict: 包含用户资料信息的字典 |
| get_feedsC | 获取微博用户动态。 返回: list[dict]: 包含动态信息的字典列表 |
| get_hot_feedsC | 获取微博用户热门动态。 返回: list[dict]: 包含热门动态信息的字典列表 |
| get_trendingsB | 获取当前微博热搜话题。 返回: list[dict]: 包含热搜条目的字典列表 |
| search_contentB | 根据关键词搜索微博内容。 返回: list[dict]: 包含搜索结果的字典列表 |
| search_topicsC | 根据关键词搜索微博话题。 返回: list[dict]: 包含搜索结果的字典列表 |
| get_followersA | 获取微博用户关注列表。 返回: list[dict]: 包含关注信息的字典列表 |
| get_fansC | 获取微博用户粉丝列表。 返回: list[dict]: 包含粉丝信息的字典列表 |
| get_commentsB | 获取指定微博帖子的评论。 返回: list[dict]: 包含评论信息的字典列表 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool targets a distinct aspect of Weibo data: comments, fans, feeds, followers, hot feeds, profile, trending, and searches for content, topics, and users. No two tools have overlapping purposes.
All tools follow a consistent verb_noun pattern using snake_case: get_* for retrieval and search_* for searching. This makes the set predictable and easy to navigate.
10 tools cover the essential read operations for a Weibo server without being excessive. Each tool earns its place, providing a well-scoped interface.
The set covers core read operations: user profile, feeds, comments, followers/fans, trending, and search across multiple dimensions. Missing might be a direct 'get_post' endpoint, but feeds and search suffice. Limited to read-only, which is acceptable for the stated domain.