-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathmanifest.json
More file actions
61 lines (61 loc) · 2.01 KB
/
manifest.json
File metadata and controls
61 lines (61 loc) · 2.01 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
{
"dxt_version": "0.2",
"name": "@imagekit/api-mcp",
"version": "7.5.1",
"description": "The official MCP Server for the Image Kit API",
"author": {
"name": "Image Kit",
"email": "developer@imagekit.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imagekit-developer/imagekit-nodejs.git"
},
"homepage": "https://github.com/imagekit-developer/imagekit-nodejs/tree/main/packages/mcp-server#readme",
"documentation": "https://imagekit.io/docs/api-reference",
"server": {
"type": "node",
"entry_point": "index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/index.js"
],
"env": {
"IMAGEKIT_PRIVATE_KEY": "${user_config.IMAGEKIT_PRIVATE_KEY}",
"OPTIONAL_IMAGEKIT_IGNORES_THIS": "${user_config.OPTIONAL_IMAGEKIT_IGNORES_THIS}",
"IMAGEKIT_WEBHOOK_SECRET": "${user_config.IMAGEKIT_WEBHOOK_SECRET}"
}
}
},
"user_config": {
"IMAGEKIT_PRIVATE_KEY": {
"title": "private_key",
"description": "Your ImageKit private API key (starts with `private_`).\nYou can find this in the [ImageKit dashboard](https://imagekit.io/dashboard/developer/api-keys).\n",
"required": true,
"type": "string"
},
"OPTIONAL_IMAGEKIT_IGNORES_THIS": {
"title": "password",
"description": "ImageKit uses your API key as username and ignores the password. \nThe SDK sets a dummy value. You can ignore this field.\n",
"required": false,
"type": "string"
},
"IMAGEKIT_WEBHOOK_SECRET": {
"title": "webhook_secret",
"description": "Your ImageKit webhook secret for verifying webhook signatures (starts with `whsec_`).\nYou can find this in the [ImageKit dashboard](https://imagekit.io/dashboard/developer/webhooks).\nOnly required if you're using webhooks.\n",
"required": false,
"type": "string"
}
},
"tools": [],
"tools_generated": true,
"compatibility": {
"runtimes": {
"node": ">=18.0.0"
}
},
"keywords": [
"api"
]
}