@hapticpaper/mcp-server 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@hapticpaper/mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "Official MCP Server for Haptic Paper - Connect your account to AI models",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "hapticpaper-mcp": "./dist/index.js",
9
+ "@hapticpaper/mcp-server": "./dist/index.js"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md"
17
+ ],
18
+ "scripts": {
19
+ "build": "npm run build:widget && tsc",
20
+ "build:widget": "npm --prefix web run build",
21
+ "start": "node dist/index.js",
22
+ "dev": "tsc --watch",
23
+ "dev:widget": "npm --prefix web run dev",
24
+ "test": "jest"
25
+ },
26
+ "dependencies": {
27
+ "@modelcontextprotocol/sdk": "^1.0.1",
28
+ "axios": "^1.6.0",
29
+ "dotenv": "^16.3.1",
30
+ "jsonwebtoken": "^9.0.2",
31
+ "open": "^11.0.0",
32
+ "zod": "^3.22.4",
33
+ "zod-to-json-schema": "^3.23.0"
34
+ },
35
+ "devDependencies": {
36
+ "@types/express": "^5.0.6",
37
+ "@types/jest": "^29.5.11",
38
+ "@types/jsonwebtoken": "^9.0.6",
39
+ "@types/node": "^20.11.0",
40
+ "jest": "^29.7.0",
41
+ "ts-jest": "^29.1.1",
42
+ "typescript": "^5.3.3"
43
+ }
44
+ }