-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.25 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
{
"name": "iwac-mcp-server-bundle",
"version": "3.3.0",
"description": "Node MCP server for the Islam West Africa Collection, packaged as a Claude Desktop extension (.mcpb).",
"private": true,
"type": "module",
"main": "server/index.js",
"author": {
"name": "Frédérick Madore",
"email": "frederick.madore@uni-bayreuth.de",
"url": "https://orcid.org/0000-0003-0959-2092"
},
"license": "MIT",
"homepage": "https://github.com/fmadore/iwac-mcp-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fmadore/iwac-mcp-server.git",
"directory": "mcpb"
},
"bugs": {
"url": "https://github.com/fmadore/iwac-mcp-server/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"digital-humanities",
"islam",
"west-africa",
"duckdb",
"huggingface"
],
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"build": "node scripts/bundle.mjs",
"start": "node server/index.js",
"start:http": "node server/index.js --http",
"clean": "rimraf server",
"test": "npm run test:unit && npm run test:fixture && npm run test:app && npm run test:skills && npm run test:http && npm run test:tokens",
"test:unit": "tsx --test test/unit.test.ts test/hf-cache.test.ts",
"test:fixture": "node scripts/make-fixtures.mjs && node test/fixture-server.test.mjs",
"test:http": "node scripts/make-fixtures.mjs && node test/http-server.test.mjs",
"test:live": "node smoke-test.mjs",
"prepack-mcpb": "npm run clean && npm run typecheck && npm run build",
"install-bindings": "node scripts/install-duckdb-bindings.mjs",
"pack-mcpb": "mcpb pack . iwac-mcp-server.mcpb",
"pack-platforms": "node scripts/pack-platforms.mjs",
"release": "npm run prepack-mcpb && npm run install-bindings && npm run pack-platforms && npm run pack-skill && npm run make-server-json",
"pack-skill": "git -C .. archive --format=zip --prefix=iwac-mcp/ -o iwac-mcp-skill.zip HEAD:.agents/skills/iwac-mcp",
"make-server-json": "node scripts/make-server-json.mjs",
"test:app": "node scripts/make-fixtures.mjs && node test/app.test.mjs",
"test:skills": "node scripts/make-fixtures.mjs && node test/skills.test.mjs",
"test:tokens": "node scripts/make-fixtures.mjs && node scripts/make-stress-fixtures.mjs && node test/token-budget.test.mjs"
},
"dependencies": {
"@duckdb/node-api": "^1.5.4-r.1",
"@google/genai": "^2.17.1",
"@modelcontextprotocol/node": "^2.0.0",
"@modelcontextprotocol/server": "^2.0.0",
"zod": "^4.4.3"
},
"optionalDependencies": {
"@duckdb/node-bindings-darwin-arm64": "^1.5.4-r.1",
"@duckdb/node-bindings-darwin-x64": "^1.5.4-r.1",
"@duckdb/node-bindings-win32-arm64": "^1.5.4-r.1",
"@duckdb/node-bindings-win32-x64": "^1.5.4-r.1"
},
"overrides": {
"tmp": "^0.2.7",
"@hono/node-server": "^2.0.12"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@biomejs/biome": "^2.5.9",
"@modelcontextprotocol/client": "^2.0.0",
"@modelcontextprotocol/ext-apps": "^1.7.5",
"@types/node": "^26.2.0",
"esbuild": "^0.28.2",
"gpt-tokenizer": "^4.0.0",
"rimraf": "^6.1.3",
"tsx": "^4.23.12",
"typescript": "^7.0.2"
}
}