package.json•1.75 kB
{
"name": "@professional-wiki/mediawiki-mcp-server",
"version": "0.1.1",
"description": "Model Context Protocol (MCP) server for MediaWiki",
"keywords": [
"modelcontextprotocol",
"mcp",
"mediawiki"
],
"homepage": "https://github.com/ProfessionalWiki/MediaWiki-MCP-Server",
"bugs": {
"url": "https://github.com/ProfessionalWiki/MediaWiki-MCP-Server/issues"
},
"license": "GPL-2.0-or-later",
"author": {
"name": "Professional Wiki",
"url": "https://professional.wiki"
},
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"bin": {
"mediawiki-mcp-server": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProfessionalWiki/MediaWiki-MCP-Server.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --cache src/**/*",
"start": "node dist/index.js",
"start:streamableHttp": "MCP_TRANSPORT=http node dist/index.js",
"dev": "concurrently --kill-others \"tsc --watch\" \"npx -y @modelcontextprotocol/inspector@latest node dist/index.js\"",
"dev:streamableHttp": "concurrently --kill-others \"tsc --watch\" \"npx -y @modelcontextprotocol/inspector@latest\" \"MCP_TRANSPORT=http node dist/index.js\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.3",
"express": "^5.1.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/node": "^24.5.2",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"concurrently": "^9.1.2",
"eslint": "^8.57.0",
"eslint-config-wikimedia": "^0.31.0",
"typescript": "^5.8.3"
}
}