- Home
- MCP servers
- typescript
31
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"selenium39-mcp-server-weibo": {
"command": "npx",
"args": [
"--from",
"git+https://github.com/Selenium39/mcp-server-weibo.git",
"mcp-server-weibo"
]
}
}
}The Weibo MCP Server provides a TypeScript-based MCP endpoint for interacting with Weibo data. It exposes tools to search users, fetch profiles and feeds, retrieve hot searches, and search content, all through a reusable MCP interface that you can connect to from an MCP client.
How to use
You connect to this MCP server from an MCP client to perform data queries against Weibo. Use the available tools to search for users, retrieve user details, fetch recent posts, pull hot search topics, and search posts by keyword. Treat this as a data source you can query from your MCP workflow or automation.
How to install
Prerequisites: You need Node.js version 18.0.0 or newer installed on your machine.
Install the MCP server using the npm/npx approach shown here. Choose either the direct git-based installation or the package-based installation.
{
"mcpServers": {
"weibo": {
"command": "npx",
"args": [
"--from",
"git+https://github.com/Selenium39/mcp-server-weibo.git",
"mcp-server-weibo"
]
}
}
}
{
"mcpServers": {
"weibo": {
"command": "npx",
"args": ["mcp-server-weibo"]
}
}
}
Additional notes
Node.js should be available in your environment as a prerequisite. After installing, you can start the MCP server through your MCP client by connecting to the configured server entry.
Configuration and capabilities
What you can access through the Weibo MCP Server is organized into Tools. The available tools include searching for users, retrieving user profiles, fetching user feeds, obtaining hot search topics, and performing content searches by keyword.
Tools
-
search_users(keyword, limit): Find Weibo users by a keyword with an optional limit.
-
get_profile(uid): Retrieve a user’s detailed profile information by user ID.
-
get_feeds(uid, limit): Get recent posts from a specific user up to the specified limit.
-
get_hot_search(limit): Obtain the current hot search topics up to the given limit.
-
search_content(keyword, limit, page?): Search Weibo posts by a keyword with pagination support.
Available tools
search_users
Search Weibo users by a keyword with an optional limit to control result volume.
get_profile
Fetch detailed information for a specific user by their UID.
get_feeds
Retrieve a user's recent Weibo posts up to a specified limit.
get_hot_search
Retrieve the current list of trending or hot search topics on Weibo.
search_content
Search Weibo posts by keyword with optional pagination and limits.