-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 KB
/
package.json
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
{
"name": "roam-research-mcp",
"version": "0.24.1",
"description": "A Model Context Protocol (MCP) server for Roam Research API integration",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/2b3pro/roam-research-mcp.git"
},
"keywords": [
"mcp",
"roam-research",
"api",
"claude",
"model-context-protocol"
],
"author": "Ian Shen / 2B3 PRODUCTIONS LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/2b3pro/roam-research-mcp/issues"
},
"homepage": "https://github.com/2b3pro/roam-research-mcp#readme",
"type": "module",
"bin": {
"roam-research": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"@roam-research/roam-api-sdk": "^0.10.0",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^20.11.24",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}