MCP Catalogs
Home

mcp-server-weibo

by qinyuanpei·45·Score 45

A robust MCP server providing Weibo social media data access with automatic authentication and both HTTP and stdio interfaces.

social-mediaweb-scrapingai-llm
17
Forks
0
Open issues
2 mo ago
Last commit
2d ago
Indexed

Overview

mcp-server-weibo is a Python-based MCP server that provides comprehensive access to Weibo's social media data through the Model Context Protocol. It offers both stdio and HTTP server modes, with the unique feature of automatically handling Weibo visitor pass authentication to obtain valid access credentials. The server provides tools for retrieving user profiles, posts, comments, trending topics, and search functionality across users, content, and topics.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Enabling AI applications to analyze social media trends and public opinion
you:Providing data sources for content analysis and research projects
you:Integrating Weibo data into chatbots for social media interaction
you:Does this server require manual authentication with Weibo?
you:What data can be retrieved through this MCP server?

When to choose this

Choose this MCP server when you need real-time access to Weibo data for AI applications that require Chinese social media integration, especially when you need user profiles, trending topics, and engagement metrics.

When NOT to choose this

Don't use this server if you require write access to Weibo (this is read-only only) or if you need data from other Chinese social media platforms like Xiaohongshu or Douyin.

Tools this server exposes

10 tools extracted from the README
  • search_userssearch_users(keyword, limit)

    搜索微博用户

  • get_profileget_profile(uid)

    获取用户详细信息

  • get_feedsget_feeds(uid, limit)

    获取用户帖子

  • get_trendingsget_trendings(limit)

    获取微博热搜话题

  • search_contentsearch_content(keyword, limit, page)

    搜索微博帖子

  • search_topicssearch_topics(keyword, limit, page)

    搜索微博话题

  • get_commentsget_comments(feed_id, page)

    获取微博帖子的评论

  • get_hot_feedsget_hot_feeds(uid, limit)

    获取微博热门帖子

  • get_followersget_followers(uid, limit, page)

    获取用户关注列表

  • get_fansget_fans(uid, limit, page)

    获取用户粉丝列表

Comparable tools

mcp-server-redditmcp-server-twittermcp-server-medium

Installation

Installation

**Using package manager (recommended):**

uvx install mcp-server-weibo

**Using Docker:**

docker build -t mcp-server-weibo .
docker run -p 4200:4200 mcp-server-weibo http

**From source:**

git clone https://github.com/qinyuanpei/mcp-server-weibo.git
cd mcp-server-weibo
uv pip install -e .

**MCP Client Configuration (stdio mode):**

{
  "mcpServers": {
    "weibo": {
      "command": "uvx",
      "args": ["mcp-server-weibo"]
    }
  }
}

**MCP Client Configuration (HTTP mode):**

{
  "mcpServers": {
    "weibo": {
      "url": "http://localhost:4200/sse"
    }
  }
}

FAQ

Does this server require manual authentication with Weibo?
No, the server automatically handles Weibo visitor pass authentication to obtain valid access credentials without manual configuration.
What data can be retrieved through this MCP server?
It provides access to user profiles, posts, comments, trending topics, and search functionality for users, content, and topics on Weibo.

Compare mcp-server-weibo with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.