-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@okto_web3/okto-mcp-server",
"version": "0.0.0-dev.3",
"main": "build/index.js",
"type": "module",
"bin": {
"okto-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "pnpm run build && node build/index.js",
"inspector": "pnpm run build && npx @modelcontextprotocol/inspector node build/index.js"
},
"files": [
"build",
"README.md"
],
"keywords": [
"okto",
"mcp",
"cursor",
"ai",
"oauth",
"model-context-protocol",
"defi",
"claude",
"auto-auth"
],
"author": "Jovian Dsouza <[email protected]>",
"license": "ISC",
"description": "Okto Web3 MCP Server",
"repository": {
"type": "git",
"url": "git+https://github.com/okto-hq/okto-mcp-server.git"
},
"bugs": {
"url": "https://github.com/okto-hq/okto-mcp-server/issues"
},
"homepage": "https://github.com/okto-hq/okto-mcp-server#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.0",
"@okto_web3/core-js-sdk": "0.5.1-dev.3",
"dotenv": "^16.4.7",
"google-auth-library": "^9.15.1",
"open": "^10.0.0",
"zod": "^3.24.2"
}
}