-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.72 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
66
{
"name": "@fil-b/foc-storage-mcp",
"version": "0.4.0",
"main": "dist/stdio.js",
"bin": {
"foc-storage-mcp": "dist/stdio.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build:mcp": "tsup && chmod +x dist/stdio.js",
"prepublishOnly": "npm run build:mcp",
"test": "tsx --test tests/**/*.test.ts",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"dev": "mastra dev",
"build": "mastra build",
"start": "mastra start",
"mcp": "tsx src/mastra/stdio.ts",
"start:mcp": "tsx src/mastra/stdio.ts",
"smoke:mcp:readonly": "tsx scripts/smoke-mcp-readonly.ts"
},
"keywords": [
"filecoin",
"synapse-sdk",
"filecoin onchain cloud",
"decentralized",
"storage",
"mastra",
"mcp"
],
"author": "@nijoe1",
"license": "MIT",
"description": "MCP server for decentralized file storage on Filecoin onchain cloud via SynapseSDK",
"repository": {
"type": "git",
"url": "git+https://github.com/FIL-Builders/foc-storage-mcp.git"
},
"bugs": {
"url": "https://github.com/FIL-Builders/foc-storage-mcp/issues"
},
"homepage": "https://github.com/FIL-Builders/foc-storage-mcp#readme",
"type": "module",
"engines": {
"node": ">=20.10.0"
},
"devDependencies": {
"@filoz/synapse-core": "^0.7.0",
"@filoz/synapse-sdk": "^1.0.1",
"@mastra/core": "^0.24.0",
"@mastra/libsql": "^0.16.2",
"@mastra/loggers": "^0.10.19",
"@mastra/mcp": "^0.14.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/node": "^24.0.4",
"decimal.js": "^10.6.0",
"dotenv": "^17.2.3",
"mastra": "^0.18.0",
"tsup": "^8.5.0",
"tsx": "^4.19.2",
"typescript": "^5.8.3",
"viem": "^2.21.0",
"zod": "^3.25.76"
}
}