-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "ollama-mcp",
"version": "2.1.0",
"description": "MCP server for Ollama - exposes all Ollama SDK functionality through MCP tools",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ollama-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rawveg/ollama-mcp.git"
},
"bugs": {
"url": "https://github.com/rawveg/ollama-mcp/issues"
},
"homepage": "https://github.com/rawveg/ollama-mcp#readme",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"dev": "node dist/index.js",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"ollama",
"ai",
"llm"
],
"author": "Tim Green <rawveg@gmail.com>",
"license": "AGPL-3.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"json2md": "^2.0.3",
"markdown-table": "^3.0.4",
"ollama": "^0.5.11",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.9",
"typescript": "^5.7.3",
"vitest": "^2.1.9"
}
}