-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 893 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 893 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
{
"name": "mcp-client-cli-xaa-sample",
"version": "1.0.0",
"description": "Sample CLI demonstrating MCP Cross-App Access (XAA) with multiple servers and Claude AI",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-cli": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/client": "https://pkg.pr.new/modelcontextprotocol/typescript-sdk/@modelcontextprotocol/client@1328",
"@modelcontextprotocol/sdk": "^1.12.0",
"chalk": "^5.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"open": "^10.1.0",
"openid-client": "^6.8.1",
"ora": "^9.3.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}