-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.04 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.04 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
61
62
63
64
65
{
"name": "ollama-mcp-bridge-webui",
"version": "1.0.0",
"description": "A web interface for connecting Ollama LLMs to Model Context Protocol (MCP) servers, bringing Claude-like tool capabilities to open-source models",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/main.ts",
"test": "jest --runInBand",
"test:ollama": "jest tests/ollama.test.ts --runInBand",
"test:filesystem": "jest tests/mcp/filesystem.test.ts --runInBand --detectOpenHandles --forceExit",
"test:brave": "jest tests/mcp/brave.test.ts --runInBand --detectOpenHandles --forceExit",
"test:sequential": "jest tests/mcp/sequential-thinking.test.ts --runInBand --detectOpenHandles --forceExit",
"reset-ollama": "ts-node src/ollama-manager.ts",
"diagnostic": "node scripts/diagnostic.js",
"debug": "node scripts/debug-tools.js",
"test-tools": "node scripts/test-tools.js"
},
"keywords": [
"ollama",
"mcp",
"bridge",
"llm",
"model-context-protocol",
"ai",
"assistant",
"webui",
"typescript"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/ollama-mcp-bridge-webui"
},
"dependencies": {
"body-parser": "^1.20.2",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"openai": "^4.0.0",
"socket.io": "^4.7.4",
"winston": "^3.8.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@modelcontextprotocol/server-brave-search": "^0.6.2",
"@modelcontextprotocol/server-filesystem": "^2025.3.28",
"@modelcontextprotocol/server-sequential-thinking": "^0.6.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.9",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.9",
"jest": "^29.7.0",
"node-fetch": "^2.6.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}