-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.79 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@professional-wiki/mediawiki-mcp-server",
"version": "0.13.1",
"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",
"server.json"
],
"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": ">=22.12.0"
},
"scripts": {
"start": "node dist/index.js",
"start:http": "MCP_TRANSPORT=http node dist/index.js",
"dev": "tsc --watch",
"build": "tsc",
"fmt": "oxfmt src tests scripts",
"fmt:check": "oxfmt --check src tests scripts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "oxlint --tsconfig=./tsconfig.lint.json",
"validate:server-json": "node scripts/validate-server-json.cjs",
"preflight": "npm ci && npm run lint && npm run fmt:check && npm run validate:server-json && npm run test && npm run build && npm run bundle -- --clean",
"prepare": "lefthook install",
"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 && node scripts/promote-changelog.cjs && git add server.json mcpb/manifest.json gemini-extension.json CHANGELOG.md"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^5.1.0",
"ipaddr.js": "2.4.0",
"jose": "^6.2.3",
"mwn": "^3.0.1",
"node-fetch": "^3.3.2",
"open": "^11.0.0",
"prom-client": "^15.1.3",
"types-mediawiki-api": "^2.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@types/express": "^5.0.2",
"@types/node": "^26.0.1",
"@types/supertest": "^7.2.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"concurrently": "^10.0.3",
"lefthook": "^2.1.6",
"oxfmt": "^0.59.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.24.0",
"supertest": "^7.2.2",
"typescript": "^7.0.2",
"vitest": "^4.1.1"
}
}