|
| 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 | +} |
0 commit comments