-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.01 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 2.01 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "tutorial",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"mcp:elasticsearch": "NODE_NO_WARNINGS=1 node --import tsx/esm src/rag/elasticsearch-mcp-http-server.ts",
"rag:case1": "tsx \"test/rag/case1-direct-rag-example.ts\"",
"rag:case2": "tsx \"test/rag/case2-agent-rag-example.ts\"",
"rag:case3": "tsx \"test/rag/case3-agent-mcp-example.ts\"",
"test-mcp-io": "tsx test/mcp/test-mcp-io-client.ts",
"test-mcp-http": "tsx test/mcp/test-mcp-http-client.ts",
"elasticsearch:start": "docker-compose -f scripts/es-mcp/docker-compose.yml up --build elasticsearch",
"elasticsearch:start:full": "docker-compose -f scripts/es-mcp/docker-compose.yml up --build",
"elasticsearch:stop": "docker-compose -f scripts/es-mcp/docker-compose.yml down",
"chroma:start": "docker-compose -f scripts/chroma-mcp/docker-compose.yml up --build",
"chroma:stop": "docker-compose -f scripts/chroma-mcp/docker-compose.yml down",
"chroma:console": "tsx src/chroma/query-console.ts",
"chroma:mcp:http": "NODE_NO_WARNINGS=1 node --import tsx/esm src/chroma/chroma-mcp-http-server.ts",
"data:setup": "tsx src/rag/setup-data.ts",
"chroma:data:setup": "tsx src/chroma/setup-data.ts"
},
"dependencies": {
"@elastic/elasticsearch": "^8.11.0",
"@google/generative-ai": "^0.24.1",
"@langchain/anthropic": "^1.0.0",
"@langchain/core": "^1.0.0",
"@langchain/google-genai": "^1.0.0",
"@langchain/mcp-adapters": "^1.0.0",
"@langchain/openai": "^1.0.0-alpha.3",
"@modelcontextprotocol/sdk": "^1.20.1",
"@types/node-fetch": "^2.6.13",
"chromadb": "^1.7.3",
"chromadb-default-embed": "^2.14.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"json-rpc-2.0": "^1.7.1",
"langchain": "^1.0.0-alpha.9",
"node-fetch": "^3.3.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.9.1"
}
}