Overview
Weibo MCP Server is a server based on the Model Context Protocol designed to scrape user information, posts, and search functionalities from Sina Weibo.
To use the Weibo MCP Server, you can install it from source code or through a package manager. Follow the installation instructions provided in the documentation.
- Search for Weibo users using keywords. - Extract detailed user profiles by user ID. - Retrieve user posts with a limit on the number of posts fetched.
- Gathering detailed information about Weibo users for research purposes.
- Analyzing user posts and interactions on Weibo.
- Conducting user searches based on specific keywords.
Add to your AI client
Use these steps to connect Weibo MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-weibo-qinyuanpei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weibo-qinyuanpei"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-weibo-qinyuanpei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weibo-qinyuanpei"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-weibo-qinyuanpei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weibo-qinyuanpei"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-weibo-qinyuanpei": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weibo-qinyuanpei"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-weibo-qinyuanpei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weibo-qinyuanpei"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-weibo-qinyuanpei": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weibo-qinyuanpei"
]
}
}
}FAQ
Is Weibo MCP Server affiliated with Weibo?
No, this project is not affiliated with Weibo and is intended for educational and research purposes only.
What are the system requirements?
The server requires Python >= 3.8, httpx >= 0.24.0, pydantic >= 2.0.0, and fastmcp >= 0.1.0.
Is there a license for this project?
Yes, it is licensed under the MIT License.