-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 966 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 966 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
{
"name": "s3-mcp",
"version": "0.1.0",
"description": "MCP server for S3-compatible storage (e.g., MinIO).",
"author": "Melchior Kannengieser",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mjkatgithub/S3-MCP.git"
},
"bugs": {
"url": "https://github.com/mjkatgithub/S3-MCP/issues"
},
"homepage": "https://github.com/mjkatgithub/S3-MCP#readme",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "cucumber-js",
"test:integration": "cucumber-js --profile integration"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.758.0",
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@cucumber/cucumber": "^11.1.0",
"@types/node": "^22.13.4",
"dotenv": "^17.2.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}