qinyuanpei_mcp_server_weibo

qinyuanpei_mcp_server_weibo

by qinyuanpei
A server for fetching and managing Sina Weibo user data, including profiles, feeds, and search functionality.

Weibo User Data Integration with MCP

Overview

The Weibo MCP Server is a specialized server built on the Model Context Protocol designed to fetch and manage Sina Weibo user data. This server enables users to retrieve detailed user profiles, user activities (feeds), and perform user searches on Weibo. It is an open-source project primarily intended for learning and research purposes.

Installation

From Source Code

To install the server from the source code, use the following configuration:

{
    "mcpServers": {
        "weibo": {
            "command": "uvx",
            "args": [
                "--from",
                "git+https://github.com/qinyuanpei/mcp-server-weibo.git",
                "mcp-server-weibo"
            ]
        }
    }
}

From Package Manager

To install via a package manager, use this configuration:

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

Tools

The server provides the following tools for interacting with Weibo data:

  • search_users(keyword, limit): Searches for Weibo users based on a keyword and limits the number of results.
  • get_profile(uid): Retrieves detailed information about a specific user by their unique ID (UID).
  • get_feeds(uid, limit): Fetches the latest activities (feeds) of a user, with an optional limit on the number of results.

Dependencies

The server requires the following dependencies to function:

  • Python >= 3.10
  • httpx >= 0.24.0

License

This project is licensed under the MIT License. For more details, refer to the LICENSE file.

Disclaimer

This project is not affiliated with Sina Weibo or its official entities. It is intended solely for educational and research purposes.

About

The Weibo MCP Server is a Python-based implementation designed to simplify the process of accessing and analyzing Weibo user data. It is actively maintained and available on GitHub.

Features & Capabilities

Categories
mcp_server model_context_protocol python weibo api_integration user_data search

Implementation Details

Stats

0 Views
2 GitHub Stars

Repository Info

qinyuanpei Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300