-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.03 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.03 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
{
"name": "aiagent-mcp-demo",
"version": "1.0.0",
"description": "Demo of AI Agent MCP integration",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npm run build && NODE_NO_WARNINGS=1 node dist/main.js",
"prebuild": "mkdir -p dist",
"build": "tsc",
"weather-server": "NODE_NO_WARNINGS=1 node --loader ts-node/esm src/weather-mcp-server.ts",
"dev": "NODE_NO_WARNINGS=1 node --loader ts-node/esm src/main.ts",
"dev:watch": "NODE_NO_WARNINGS=1 nodemon --watch 'src/**/*.ts' --exec 'node --loader ts-node/esm' src/main.ts"
},
"dependencies": {
"@ai-sdk/deepseek": "^0.1.15",
"@anthropic-ai/bedrock-sdk": "^0.12.4",
"@anthropic-ai/sdk": "^0.37.0",
"@anthropic-ai/vertex-sdk": "^0.6.4",
"@modelcontextprotocol/sdk": "1.3.1",
"@types/dotenv": "^6.1.1",
"ai": "^4.1.61",
"dotenv": "^16.4.7",
"typescript": "^5.4.2"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/node": "^22.13.10",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2"
}
}