-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 896 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 896 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "openrouter-mcp-server",
"version": "1.0.0",
"description": "MCP server that bridges Claude Code to OpenRouter API for multi-model workflows",
"author": "stefans71",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stefans71/Claude_GPT_MCP"
},
"keywords": [
"mcp",
"openrouter",
"claude",
"claude-code",
"llm",
"gpt",
"gemini",
"ai",
"multi-model"
],
"main": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}