-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.01 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
{
"name": "mcp-project",
"version": "1.0.0",
"type": "module",
"description": "A Node.js project with an MCP server, weather agent with caching, RPA agent, and a sample client",
"main": "server/mcp_server.js",
"scripts": {
"start:server": "node server/mcp_server.js",
"start:weather": "node agents/weather_agent.js",
"start:data": "node agents/metrics_agent.js",
"start:client": "node agents/client.js",
"start:langchain": "node agents/langchain_client.js",
"start:waylay": "node agents/waylay_agent.js",
"start:waylay_client_assistant": "node agents/client_ask_assistant.js",
"start:waylay_assistant": "node agents/waylay_assistant_agent.js",
"start:rl": "node agents/RL_dc.js"
},
"dependencies": {
"@tensorflow/tfjs": "^4.2.0",
"@tensorflow/tfjs-node": "^4.22.0",
"axios": "^1.3.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"langchain": "^0.3.19",
"redis": "^4.6.7",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"uuid": "^9.0.0"
}
}