Skip to content

Commit a49bbd4

Browse files
committed
Update repo with server manifest from issue #112
1 parent 5a4cb75 commit a49bbd4

File tree

1 file changed

+178
-0
lines changed

1 file changed

+178
-0
lines changed
Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
{
2+
"display_name": "Weibo MCP Server",
3+
"license": "MIT License",
4+
"tags": [
5+
"weibo",
6+
"social media",
7+
"scraping",
8+
"user information",
9+
"search",
10+
"TypeScript",
11+
"MCP",
12+
"Model Context Protocol"
13+
],
14+
"installations": {
15+
"npm": {
16+
"type": "npm",
17+
"command": "npx",
18+
"args": [
19+
"mcp-server-weibo"
20+
],
21+
"description": "Install from package manager"
22+
}
23+
},
24+
"examples": [
25+
{
26+
"title": "",
27+
"description": "",
28+
"prompt": "Search for users with the keyword 'technology'"
29+
},
30+
{
31+
"title": "",
32+
"description": "",
33+
"prompt": "Get the profile information for user with UID 1234567890"
34+
},
35+
{
36+
"title": "",
37+
"description": "",
38+
"prompt": "Fetch the latest 10 feeds from user with UID 1234567890"
39+
},
40+
{
41+
"title": "",
42+
"description": "",
43+
"prompt": "Show me the current Weibo hot search rankings"
44+
},
45+
{
46+
"title": "",
47+
"description": "",
48+
"prompt": "Search for Weibo content containing the keyword 'climate change'"
49+
}
50+
],
51+
"name": "@Selenium39/mcp-server-weibo",
52+
"repository": {
53+
"type": "git",
54+
"url": "https://github.com/Selenium39/mcp-server-weibo"
55+
},
56+
"homepage": "https://github.com/Selenium39/mcp-server-weibo",
57+
"author": {
58+
"name": "Selenium39"
59+
},
60+
"description": "This is a server based on the [Model Context Protocol](https://modelcontextprotocol.io) for scraping Weibo user information, feeds, and search functionality. This server can help retrieve detailed information about Weibo users, feed content, and perform user searches.",
61+
"categories": [
62+
"Web Services"
63+
],
64+
"tools": [
65+
{
66+
"name": "search_users",
67+
"description": null,
68+
"inputSchema": {
69+
"type": "object",
70+
"properties": {
71+
"keyword": {
72+
"type": "string",
73+
"description": "\u67e5\u627e\u7528\u6237\u7684\u641c\u7d22\u8bcd"
74+
},
75+
"limit": {
76+
"type": "number",
77+
"description": "\u8fd4\u56de\u7684\u6700\u5927\u7528\u6237\u6570\u91cf"
78+
}
79+
},
80+
"required": [
81+
"keyword",
82+
"limit"
83+
],
84+
"additionalProperties": false,
85+
"$schema": "http://json-schema.org/draft-07/schema#"
86+
}
87+
},
88+
{
89+
"name": "get_profile",
90+
"description": null,
91+
"inputSchema": {
92+
"type": "object",
93+
"properties": {
94+
"uid": {
95+
"type": "number",
96+
"description": "\u5fae\u535a\u7528\u6237\u7684\u552f\u4e00\u6807\u8bc6\u7b26"
97+
}
98+
},
99+
"required": [
100+
"uid"
101+
],
102+
"additionalProperties": false,
103+
"$schema": "http://json-schema.org/draft-07/schema#"
104+
}
105+
},
106+
{
107+
"name": "get_feeds",
108+
"description": null,
109+
"inputSchema": {
110+
"type": "object",
111+
"properties": {
112+
"uid": {
113+
"type": "number",
114+
"description": "\u5fae\u535a\u7528\u6237\u7684\u552f\u4e00\u6807\u8bc6\u7b26"
115+
},
116+
"limit": {
117+
"type": "number",
118+
"description": "\u8fd4\u56de\u7684\u6700\u5927\u52a8\u6001\u6570\u91cf"
119+
}
120+
},
121+
"required": [
122+
"uid",
123+
"limit"
124+
],
125+
"additionalProperties": false,
126+
"$schema": "http://json-schema.org/draft-07/schema#"
127+
}
128+
},
129+
{
130+
"name": "get_hot_search",
131+
"description": null,
132+
"inputSchema": {
133+
"type": "object",
134+
"properties": {
135+
"limit": {
136+
"type": "number",
137+
"description": "\u8fd4\u56de\u7684\u6700\u5927\u70ed\u641c\u6761\u76ee\u6570\u91cf"
138+
}
139+
},
140+
"required": [
141+
"limit"
142+
],
143+
"additionalProperties": false,
144+
"$schema": "http://json-schema.org/draft-07/schema#"
145+
}
146+
},
147+
{
148+
"name": "search_content",
149+
"description": null,
150+
"inputSchema": {
151+
"type": "object",
152+
"properties": {
153+
"keyword": {
154+
"type": "string",
155+
"description": "\u641c\u7d22\u5fae\u535a\u5185\u5bb9\u7684\u5173\u952e\u8bcd"
156+
},
157+
"limit": {
158+
"type": "number",
159+
"description": "\u8fd4\u56de\u7684\u6700\u5927\u5fae\u535a\u6761\u76ee\u6570\u91cf"
160+
},
161+
"page": {
162+
"type": "number",
163+
"description": "\u8d77\u59cb\u9875\u7801\uff0c\u9ed8\u8ba4\u4e3a1"
164+
}
165+
},
166+
"required": [
167+
"keyword",
168+
"limit"
169+
],
170+
"additionalProperties": false,
171+
"$schema": "http://json-schema.org/draft-07/schema#"
172+
}
173+
}
174+
],
175+
"prompts": [],
176+
"resources": [],
177+
"is_official": false
178+
}

0 commit comments

Comments
 (0)