-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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
51
52
53
54
55
56
57
58
59
60
{
"name": "llm-router-mcp",
"version": "1.0.1",
"description": "MCP server that routes prompts across Claude, Gemini, and GPT-4o to minimise token cost",
"main": "dist/index.js",
"bin": {
"llm-router-mcp": "dist/index.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"start:mock": "cross-env MOCK_MODE=true node dist/index.js",
"dev": "npx ts-node src/index.ts",
"test": "node test-router.cjs",
"prepare": "npx tsc"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.0",
"@google/generative-ai": "^0.15.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"cross-env": "^7.0.3",
"dotenv": "^17.4.2",
"llm-router-mcp": "^1.0.0",
"openai": "^4.52.0"
},
"homepage": "https://github.com/Devatva24/LLM-Router-MCP#readme",
"bugs": {
"url": "https://github.com/Devatva24/LLM-Router-MCP/issues"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"llm",
"claude",
"gemini",
"gpt4o",
"anthropic",
"ai-router",
"prompt-routing",
"llm-orchestration",
"multi-llm",
"cost-optimization"
],
"author": "Devatva24",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Devatva24/LLM-Router-MCP"
},
"engines": {
"node": ">=20"
}
}