-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "@picahq/mcp",
"version": "2.1.3",
"description": "A Model Context Protocol Server for Pica",
"type": "module",
"bin": {
"mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"http": "npm run build && node build/index.js",
"http:dev": "npm run build && nodemon build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@vercel/mcp-adapter": "^0.9.1",
"axios": "^1.10.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"form-data": "^4.0.3",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.0.0",
"nodemon": "^3.1.10",
"typescript": "^5.6.0"
},
"author": {
"name": "Pica",
"email": "support@picaos.com",
"url": "https://picaos.com"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/picahq/mcp"
},
"mcpName": "com.picaos/mcp"
}