-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@professional-wiki/mediawiki-mcp-server",
"version": "0.6.5",
"description": "Model Context Protocol (MCP) server for MediaWiki",
"mcpName": "io.github.ProfessionalWiki/mediawiki-mcp-server",
"keywords": [
"modelcontextprotocol",
"mcp",
"mediawiki",
"wiki",
"wikipedia",
"wikimedia",
"knowledge",
"wikibase",
"smw"
],
"homepage": "https://github.com/ProfessionalWiki/MediaWiki-MCP-Server",
"bugs": {
"url": "https://github.com/ProfessionalWiki/MediaWiki-MCP-Server/issues"
},
"license": "MIT",
"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": {
"start": "node dist/index.js",
"start:http": "MCP_TRANSPORT=http node dist/index.js",
"dev": "tsc --watch",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --cache src/**/*",
"validate:server-json": "node scripts/validate-server-json.cjs",
"preflight": "npm ci && npm run lint && npm run validate:server-json && npm run build && npm run bundle -- --clean",
"inspector": "concurrently --kill-others \"tsc --watch\" \"npx -y @modelcontextprotocol/inspector@latest node dist/index.js\"",
"inspector:http": "concurrently --kill-others \"tsc --watch\" \"npx -y @modelcontextprotocol/inspector@latest\" \"MCP_TRANSPORT=http node dist/index.js\"",
"mcpjam": "concurrently --kill-others \"tsc --watch\" \"npx -y @mcpjam/inspector@latest node $(pwd)/dist/index.js\"",
"bundle": "npm run build && node scripts/bundle.cjs",
"preversion": "npm run preflight",
"version": "node scripts/sync-version.cjs && git add server.json mcpb/manifest.json Dockerfile"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"express": "^5.1.0",
"mwn": "^3.0.1",
"node-fetch": "^3.3.2",
"types-mediawiki-api": "^2.0.0"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@types/express": "^5.0.2",
"@types/node": "^25.0.2",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"concurrently": "^9.1.2",
"eslint": "^8.57.0",
"eslint-config-wikimedia": "^0.32.2",
"typescript": "^5.8.3"
}
}