-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 978 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 978 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
37
38
39
40
41
{
"name": "@web3auth/mcp-server",
"version": "2.0.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"web3auth-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"dev:http": "next dev --webpack",
"build:all": "tsc && next build --webpack"
},
"keywords": [
"web3auth",
"metamask",
"embedded-wallets",
"mcp",
"ai"
],
"author": "Web3Auth",
"license": "MIT",
"description": "MCP server for MetaMask Embedded Wallets (Web3Auth) - helps AI coding agents integrate Web3Auth SDKs",
"dependencies": {
"@modelcontextprotocol/sdk": "1.25.2",
"lru-cache": "^11.2.6",
"mcp-handler": "^1.0.7",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^5.9.3"
}
}