-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 781 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 781 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
{
"name": "mcp-server-mlflow",
"version": "0.0.1",
"description": "Model Context Protocol (MCP) Server for MLflow Prompt Registry",
"license": "MIT",
"author": "B-Step62",
"type": "module",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"model-context-protocol",
"llm",
"llmops",
"mlflow",
"prompt-engineering",
"prompt-management",
"prompt-registry"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"@types/node": "^20",
"axios": "^1.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}