-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "replicate-flux-mcp",
"version": "0.4.0",
"type": "module",
"bin": {
"replicate-flux-mcp": "build/index.js"
},
"scripts": {
"build": "tsc && shx chmod +x build/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js -e REPLICATE_API_TOKEN=YOUR_REPLICATE_API_TOKEN"
},
"homepage": "https://github.com/awkoy/replicate-flux-mcp",
"keywords": [
"replicate",
"flux",
"mcp",
"flux-schnell",
"flux-schnell-mcp",
"modelcontextprotocol",
"image-generation",
"ai"
],
"author": "Yaroslav Boiko <y.boikodeveloper@gmail.com>",
"license": "MIT",
"description": "MCP for Replicate Flux Model",
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"replicate": "^1.4.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"shx": "^0.3.4",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awkoy/replicate-flux-mcp.git"
}
}