-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.35 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@cyanheads/gnomad-genetics-mcp-server",
"version": "0.1.5",
"mcpName": "io.github.cyanheads/gnomad-genetics-mcp-server",
"description": "Look up variant allele frequencies by ancestry, gene loss-of-function constraint, gene variant lists, and sequencing coverage over gnomAD — with ClinVar significance joined in — via MCP. STDIO or Streamable HTTP.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gnomad-genetics-mcp-server": "dist/index.js"
},
"files": [
"changelog/",
"dist/",
"README.md",
"LICENSE",
"CLAUDE.md",
"AGENTS.md",
"Dockerfile",
"server.json"
],
"scripts": {
"build": "bun run scripts/build.ts",
"rebuild": "bun run scripts/clean.ts && bun run scripts/build.ts",
"clean": "bun run scripts/clean.ts",
"devcheck": "bun run scripts/devcheck.ts",
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
"tree": "bun run scripts/tree.ts",
"list-skills": "bun run scripts/list-skills.ts",
"format": "biome check --write .",
"format:unsafe": "biome check --write --unsafe .",
"lint:mcp": "bun run scripts/lint-mcp.ts",
"lint:packaging": "bun run scripts/lint-packaging.ts",
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/gnomad-genetics-mcp-server.mcpb && bun run scripts/clean-mcpb.ts dist/gnomad-genetics-mcp-server.mcpb",
"changelog:build": "bun run scripts/build-changelog.ts",
"changelog:check": "bun run scripts/build-changelog.ts --check",
"release:github": "bun run scripts/release-github.ts",
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
"test": "vitest run",
"start": "node dist/index.js",
"start:stdio": "MCP_TRANSPORT_TYPE=stdio node dist/index.js",
"start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"typescript",
"bun",
"stdio",
"streamable-http",
"gnomad",
"genetics",
"genomics",
"bioinformatics",
"variant-interpretation",
"allele-frequency",
"gene-constraint",
"clinvar"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyanheads/gnomad-genetics-mcp-server.git"
},
"bugs": {
"url": "https://github.com/cyanheads/gnomad-genetics-mcp-server/issues"
},
"homepage": "https://github.com/cyanheads/gnomad-genetics-mcp-server#readme",
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/gnomad-genetics-mcp-server#readme)",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cyanheads"
},
{
"type": "buy_me_a_coffee",
"url": "https://www.buymeacoffee.com/cyanheads"
}
],
"license": "Apache-2.0",
"packageManager": "bun@1.3.11",
"engines": {
"bun": ">=1.3.0",
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cyanheads/mcp-ts-core": "^0.10.10",
"@duckdb/node-api": "^1.5.4-r.1",
"pino-pretty": "^13.1.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@types/node": "^26.0.1",
"depcheck": "^1.4.7",
"ignore": "^7.0.5",
"tsc-alias": "^1.8.17",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}