-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 958 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 958 Bytes
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
{
"name": "@harperdb/mcp-server",
"version": "1.0.0",
"description": "An MCP server providing an interface for MCP clients to access data within Harper.",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc; harperdb dev .",
"server": "tsc; harperdb run .",
"format": "prettier --write .",
"postinstall": "npm link harperdb"
},
"prettier": "@harperdb/code-guidelines/prettier",
"author": "HarperDB, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@harperdb/code-guidelines": "^0.0.2",
"@modelcontextprotocol/sdk": "^1.11.0",
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"main": "dist/resources/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/HarperDB/mcp-server.git"
},
"keywords": [
"mcp"
],
"bugs": {
"url": "https://github.com/HarperDB/mcp-server/issues"
},
"homepage": "https://github.com/HarperDB/mcp-server#readme"
}