Skip to content

Commit 7e82ac8

Browse files
Merge branch 'main' into copilot/update-vscode-config-file
2 parents bd77147 + 99564ab commit 7e82ac8

2 files changed

Lines changed: 121 additions & 0 deletions

File tree

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
{
2+
"name": "mediawiki-mcp-server",
3+
"display_name": "MCP Server for MediaWiki",
4+
"description": "This server allows you to manage MediaWiki, the software that powers Wikipedia, using MCP.",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/ProfessionalWiki/MediaWiki-MCP-Server"
8+
},
9+
"author": {
10+
"name": "ProfessionalWiki",
11+
"url": "https://professional.wiki/"
12+
},
13+
"license": "MIT",
14+
"categories": [
15+
"Web Services",
16+
"Knowledge Base",
17+
"MCP Tools"
18+
],
19+
"tags": [
20+
"mediawiki",
21+
"mcp",
22+
"wiki"
23+
],
24+
"env": {
25+
"CONFIG_PATH": {
26+
"description": "PATH TO CONFIG",
27+
"required": true,
28+
"example": "path/to/config.json"
29+
}
30+
},
31+
"installations": {
32+
"npm": {
33+
"type": "npm",
34+
"command": "npx",
35+
"args": [
36+
"@professional-wiki/mediawiki-mcp-server@latest"
37+
],
38+
"env": {
39+
"CONFIG_PATH": "path/to/config.json"
40+
},
41+
"recommended": true
42+
}
43+
},
44+
"tools": [
45+
{
46+
"name": "mediawiki_edit",
47+
"description": "Create or edit a MediaWiki page."
48+
},
49+
{
50+
"name": "mediawiki_get",
51+
"description": "Get the content of a MediaWiki page."
52+
}
53+
],
54+
"prompts": [
55+
{
56+
"name": "edit_page",
57+
"description": "Edits a MediaWiki page.",
58+
"arguments": [
59+
{
60+
"name": "page",
61+
"description": "Title of the page to edit",
62+
"required": true
63+
},
64+
{
65+
"name": "content",
66+
"description": "New content of the page",
67+
"required": true
68+
}
69+
]
70+
}
71+
],
72+
"examples": [
73+
{
74+
"title": "Get a page",
75+
"description": "Get the content of the 'Main Page' on mediawiki.org.",
76+
"prompt": "Get the content of the 'Main Page' on mediawiki.org, then print it to the screen"
77+
},
78+
{
79+
"title": "Summarize a page",
80+
"description": "Get a page and then summarize it.",
81+
"prompt": "Get the content of the 'Community portal' page on mediawiki.org, then summarize it."
82+
}
83+
],
84+
"is_archived": false,
85+
"is_official": false
86+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "@jotform/mcp-server",
3+
"display_name": "MCP Server",
4+
"description": "MCP server that can be extended with custom tools and deployed anywhere.",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/jotform/mcp-server"
8+
},
9+
"author": {
10+
"name": "Jotform"
11+
},
12+
"license": "MIT",
13+
"categories": [
14+
"Dev Tools",
15+
"Web Services"
16+
],
17+
"tags": [
18+
"mcp",
19+
"server",
20+
"tools"
21+
],
22+
"installations": {
23+
"http": {
24+
"type": "http",
25+
"url": "https://mcp.jotform.com",
26+
"recommended": true
27+
}
28+
},
29+
"tools": [],
30+
"resources": [],
31+
"prompts": [],
32+
"examples": [],
33+
"is_official": true,
34+
"is_archived": false
35+
}

0 commit comments

Comments
 (0)