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.
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.
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"
]
}
}
}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"
]
}
}
}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"
]
}
}
}Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
No, this project is not affiliated with Weibo and is intended for educational and research purposes only.
The server requires Python >= 3.8, httpx >= 0.24.0, pydantic >= 2.0.0, and fastmcp >= 0.1.0.
Yes, it is licensed under the MIT License.
{
"servers": {
"mcp-server-weibo-qinyuanpei": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-weibo-qinyuanpei"
]
}
}
}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"
]
}
}
}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"
]
}
}
}