-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "altmetric-mcp",
"version": "0.5.0",
"description": "MCP server for Altmetric APIs - track research attention across news, policy, social media, and more",
"mcpName": "io.github.altmetric/altmetric-mcp",
"type": "module",
"main": "index.js",
"bin": {
"altmetric-mcp": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/altmetric/altmetric-mcp.git"
},
"bugs": {
"url": "https://github.com/altmetric/altmetric-mcp/issues"
},
"homepage": "https://github.com/altmetric/altmetric-mcp#readme",
"scripts": {
"start": "node --env-file=.env index.js",
"dev": "node --watch --env-file=.env index.js",
"test": "NODE_ENV=test mocha",
"test:unit": "NODE_ENV=test mocha",
"test:integration": "node --env-file=.env test/integration.test.js"
},
"keywords": [
"mcp",
"altmetric",
"research-impact",
"attention-metrics",
"research",
"altmetrics",
"model-context-protocol"
],
"author": "Altmetric",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@altmetric/identifiers": "^1.0.0"
},
"devDependencies": {
"mocha": "^11.7.2",
"nock": "^14.0.11",
"sinon": "^21.0.2"
},
"engines": {
"node": ">=20.6.0"
},
"overrides": {
"hono": ">=4.11.10",
"diff": ">=8.0.3",
"ajv": ">=8.18.0",
"qs": ">=6.14.2",
"minimatch": ">=10.2.1",
"serialize-javascript": ">=7.0.3"
}
}