Skip to content

Commit 1d54a7c

Browse files
authored
Merge branch 'main' into caozhen/add-docker-icon
2 parents 5572493 + 9590e25 commit 1d54a7c

File tree

5 files changed

+463
-16
lines changed

5 files changed

+463
-16
lines changed
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"display_name": "EdgeOne Pages MCP",
3+
"license": "MIT",
4+
"tags": [
5+
"html",
6+
"deployment",
7+
"edge functions",
8+
"kv store",
9+
"static content",
10+
"serverless",
11+
"mcp",
12+
"tencent",
13+
"edgeone"
14+
],
15+
"installations": {
16+
"npm": {
17+
"type": "npm",
18+
"command": "npx",
19+
"args": [
20+
"edgeone-pages-mcp"
21+
],
22+
"description": "Run EdgeOne Pages MCP server using npx"
23+
}
24+
},
25+
"examples": [
26+
{
27+
"title": "",
28+
"description": "",
29+
"prompt": "Deploy a simple HTML page with a hello world message"
30+
},
31+
{
32+
"title": "",
33+
"description": "",
34+
"prompt": "Create a landing page with a contact form"
35+
},
36+
{
37+
"title": "",
38+
"description": "",
39+
"prompt": "Generate and deploy a portfolio website"
40+
},
41+
{
42+
"title": "",
43+
"description": "",
44+
"prompt": "Deploy an HTML page with CSS animations"
45+
},
46+
{
47+
"title": "",
48+
"description": "",
49+
"prompt": "Create a product showcase page with images and descriptions"
50+
}
51+
],
52+
"name": "edgeone-pages-mcp",
53+
"repository": {
54+
"type": "git",
55+
"url": "https://github.com/TencentEdgeOne/edgeone-pages-mcp"
56+
},
57+
"homepage": "https://github.com/TencentEdgeOne/edgeone-pages-mcp",
58+
"author": {
59+
"name": "TencentEdgeOne"
60+
},
61+
"description": "An MCP service for deploying HTML content to EdgeOne Pages and obtaining a publicly accessible URL.",
62+
"categories": [
63+
"Web Services"
64+
],
65+
"tools": [
66+
{
67+
"name": "deploy-html",
68+
"description": "Deploy HTML content to EdgeOne Pages, return the public URL",
69+
"inputSchema": {
70+
"type": "object",
71+
"properties": {
72+
"value": {
73+
"type": "string",
74+
"description": "HTML or text content to deploy. Provide complete HTML or text content you want to publish, and the system will return a public URL where your content can be accessed."
75+
}
76+
},
77+
"required": [
78+
"value"
79+
],
80+
"additionalProperties": false,
81+
"$schema": "http://json-schema.org/draft-07/schema#"
82+
}
83+
}
84+
],
85+
"prompts": [],
86+
"resources": [],
87+
"is_official": false
88+
}

mcp-registry/servers/fetch-mcp.json

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -48,25 +48,12 @@
4848
"installations": {
4949
"npm": {
5050
"type": "npm",
51-
"command": "npx",
51+
"command": "node",
5252
"args": [
53-
"-y",
54-
"https://github.com/zcaceres/fetch-mcp"
53+
"{ABSOLUTE PATH TO FILE HERE}/dist/index.js"
5554
]
5655
}
5756
},
58-
"arguments": {
59-
"url": {
60-
"description": "URL of the website to fetch",
61-
"required": true,
62-
"example": "https://example.com"
63-
},
64-
"headers": {
65-
"description": "Custom headers to include in the request",
66-
"required": false,
67-
"example": "{\"Authorization\": \"Bearer token\"}"
68-
}
69-
},
7057
"tools": [
7158
{
7259
"name": "fetch_html",
@@ -149,4 +136,4 @@
149136
}
150137
}
151138
]
152-
}
139+
}
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": "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": "Search for Weibo users by keyword",
68+
"inputSchema": {
69+
"type": "object",
70+
"properties": {
71+
"keyword": {
72+
"type": "string",
73+
"description": "查找用户的搜索词"
74+
},
75+
"limit": {
76+
"type": "number",
77+
"description": "返回的最大用户数量"
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": "Get Weibo user profile by UID",
91+
"inputSchema": {
92+
"type": "object",
93+
"properties": {
94+
"uid": {
95+
"type": "number",
96+
"description": "微博用户的唯一标识符"
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": "Get Weibo user feeds by UID",
109+
"inputSchema": {
110+
"type": "object",
111+
"properties": {
112+
"uid": {
113+
"type": "number",
114+
"description": "微博用户的唯一标识符"
115+
},
116+
"limit": {
117+
"type": "number",
118+
"description": "返回的最大动态数量"
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": "Get current Weibo hot search rankings",
132+
"inputSchema": {
133+
"type": "object",
134+
"properties": {
135+
"limit": {
136+
"type": "number",
137+
"description": "返回的最大热搜数量"
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": "Search for Weibo content by keyword",
150+
"inputSchema": {
151+
"type": "object",
152+
"properties": {
153+
"keyword": {
154+
"type": "string",
155+
"description": "要搜索的微博内容关键词"
156+
},
157+
"limit": {
158+
"type": "number",
159+
"description": "返回的最大微博数量"
160+
},
161+
"page": {
162+
"type": "number",
163+
"description": "起始页码, 默认为1"
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)