@payloadcms/plugin-mcp 3.86.0-internal.ac46214 → 4.0.0-canary.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (329) hide show
  1. package/README.md +2 -2
  2. package/bin.js +39 -0
  3. package/dist/collection/getAccessField.d.ts +12 -0
  4. package/dist/collection/getAccessField.d.ts.map +1 -0
  5. package/dist/collection/getAccessField.js +57 -0
  6. package/dist/collection/getAccessField.js.map +1 -0
  7. package/dist/collection/index.d.ts +6 -0
  8. package/dist/collection/index.d.ts.map +1 -0
  9. package/dist/collection/index.js +59 -0
  10. package/dist/collection/index.js.map +1 -0
  11. package/dist/components/AccessField/index.client.d.ts +10 -0
  12. package/dist/components/AccessField/index.client.d.ts.map +1 -0
  13. package/dist/components/AccessField/index.client.js +305 -0
  14. package/dist/components/AccessField/index.client.js.map +1 -0
  15. package/dist/components/AccessField/index.css +93 -0
  16. package/dist/defineTool.d.ts +26 -0
  17. package/dist/defineTool.d.ts.map +1 -0
  18. package/dist/defineTool.js +37 -0
  19. package/dist/defineTool.js.map +1 -0
  20. package/dist/endpoint/access.d.ts +10 -0
  21. package/dist/endpoint/access.d.ts.map +1 -0
  22. package/dist/endpoint/access.js +106 -0
  23. package/dist/endpoint/access.js.map +1 -0
  24. package/dist/endpoint/index.d.ts +3 -0
  25. package/dist/endpoint/index.d.ts.map +1 -0
  26. package/dist/endpoint/index.js +36 -0
  27. package/dist/endpoint/index.js.map +1 -0
  28. package/dist/exports/client.d.ts +2 -0
  29. package/dist/exports/client.d.ts.map +1 -0
  30. package/dist/exports/client.js +4 -0
  31. package/dist/exports/client.js.map +1 -0
  32. package/dist/index.d.ts +4 -7
  33. package/dist/index.d.ts.map +1 -1
  34. package/dist/index.js +44 -67
  35. package/dist/index.js.map +1 -1
  36. package/dist/mcp/buildMcpServer.d.ts +19 -0
  37. package/dist/mcp/buildMcpServer.d.ts.map +1 -0
  38. package/dist/mcp/buildMcpServer.js +163 -0
  39. package/dist/mcp/buildMcpServer.js.map +1 -0
  40. package/dist/mcp/builtin/collections/authTools.d.ts +7 -0
  41. package/dist/mcp/builtin/collections/authTools.d.ts.map +1 -0
  42. package/dist/mcp/builtin/collections/authTools.js +250 -0
  43. package/dist/mcp/builtin/collections/authTools.js.map +1 -0
  44. package/dist/mcp/builtin/collections/createTool.d.ts +2 -0
  45. package/dist/mcp/builtin/collections/createTool.d.ts.map +1 -0
  46. package/dist/mcp/builtin/collections/createTool.js +87 -0
  47. package/dist/mcp/builtin/collections/createTool.js.map +1 -0
  48. package/dist/mcp/builtin/collections/deleteTool.d.ts +2 -0
  49. package/dist/mcp/builtin/collections/deleteTool.d.ts.map +1 -0
  50. package/dist/mcp/builtin/collections/deleteTool.js +117 -0
  51. package/dist/mcp/builtin/collections/deleteTool.js.map +1 -0
  52. package/dist/mcp/builtin/collections/findTool.d.ts +2 -0
  53. package/dist/mcp/builtin/collections/findTool.d.ts.map +1 -0
  54. package/dist/mcp/builtin/collections/findTool.js +159 -0
  55. package/dist/mcp/builtin/collections/findTool.js.map +1 -0
  56. package/dist/mcp/builtin/collections/updateTool.d.ts +2 -0
  57. package/dist/mcp/builtin/collections/updateTool.d.ts.map +1 -0
  58. package/dist/mcp/builtin/collections/updateTool.js +187 -0
  59. package/dist/mcp/builtin/collections/updateTool.js.map +1 -0
  60. package/dist/mcp/builtin/globals/findTool.d.ts +2 -0
  61. package/dist/mcp/builtin/globals/findTool.d.ts.map +1 -0
  62. package/dist/mcp/builtin/globals/findTool.js +76 -0
  63. package/dist/mcp/builtin/globals/findTool.js.map +1 -0
  64. package/dist/mcp/builtin/globals/updateTool.d.ts +2 -0
  65. package/dist/mcp/builtin/globals/updateTool.d.ts.map +1 -0
  66. package/dist/mcp/builtin/globals/updateTool.js +92 -0
  67. package/dist/mcp/builtin/globals/updateTool.js.map +1 -0
  68. package/dist/mcp/builtinTools.d.ts +37 -0
  69. package/dist/mcp/builtinTools.d.ts.map +1 -0
  70. package/dist/mcp/builtinTools.js +64 -0
  71. package/dist/mcp/builtinTools.js.map +1 -0
  72. package/dist/mcp/sanitizeMCPConfig.d.ts +17 -0
  73. package/dist/mcp/sanitizeMCPConfig.d.ts.map +1 -0
  74. package/dist/mcp/sanitizeMCPConfig.js +167 -0
  75. package/dist/mcp/sanitizeMCPConfig.js.map +1 -0
  76. package/dist/stdio.d.ts +8 -0
  77. package/dist/stdio.d.ts.map +1 -0
  78. package/dist/stdio.js +89 -0
  79. package/dist/stdio.js.map +1 -0
  80. package/dist/types.d.ts +262 -455
  81. package/dist/types.d.ts.map +1 -1
  82. package/dist/types.js +6 -1
  83. package/dist/types.js.map +1 -1
  84. package/dist/utils/camelCase.d.ts.map +1 -1
  85. package/dist/utils/getLogger.d.ts +10 -0
  86. package/dist/utils/getLogger.d.ts.map +1 -0
  87. package/dist/utils/getLogger.js +22 -0
  88. package/dist/utils/getLogger.js.map +1 -0
  89. package/dist/utils/getPluginConfig.d.ts +12 -0
  90. package/dist/utils/getPluginConfig.d.ts.map +1 -0
  91. package/dist/utils/getPluginConfig.js +15 -0
  92. package/dist/utils/getPluginConfig.js.map +1 -0
  93. package/dist/utils/localAPIDefaults.d.ts +20 -0
  94. package/dist/utils/localAPIDefaults.d.ts.map +1 -0
  95. package/dist/utils/localAPIDefaults.js +19 -0
  96. package/dist/utils/localAPIDefaults.js.map +1 -0
  97. package/dist/utils/resolveProjectRoot.d.ts +7 -0
  98. package/dist/utils/resolveProjectRoot.d.ts.map +1 -0
  99. package/dist/utils/resolveProjectRoot.js +15 -0
  100. package/dist/utils/resolveProjectRoot.js.map +1 -0
  101. package/dist/utils/schemaConversion/prepareCollectionSchema.d.ts +7 -0
  102. package/dist/utils/schemaConversion/prepareCollectionSchema.d.ts.map +1 -0
  103. package/dist/utils/schemaConversion/prepareCollectionSchema.js +37 -0
  104. package/dist/utils/schemaConversion/prepareCollectionSchema.js.map +1 -0
  105. package/dist/utils/schemaConversion/removeVirtualFieldsFromSchema.d.ts +2 -2
  106. package/dist/utils/schemaConversion/removeVirtualFieldsFromSchema.d.ts.map +1 -1
  107. package/dist/utils/schemaConversion/removeVirtualFieldsFromSchema.js.map +1 -1
  108. package/dist/utils/schemaConversion/sanitizeJsonSchema.d.ts +2 -2
  109. package/dist/utils/schemaConversion/sanitizeJsonSchema.d.ts.map +1 -1
  110. package/dist/utils/schemaConversion/sanitizeJsonSchema.js.map +1 -1
  111. package/dist/utils/schemaConversion/simplifyRelationshipFields.d.ts +2 -2
  112. package/dist/utils/schemaConversion/simplifyRelationshipFields.d.ts.map +1 -1
  113. package/dist/utils/schemaConversion/simplifyRelationshipFields.js +7 -4
  114. package/dist/utils/schemaConversion/simplifyRelationshipFields.js.map +1 -1
  115. package/dist/utils/schemaConversion/transformPointFields.d.ts +2 -2
  116. package/dist/utils/schemaConversion/transformPointFields.d.ts.map +1 -1
  117. package/dist/utils/schemaConversion/transformPointFields.js +7 -1
  118. package/dist/utils/schemaConversion/transformPointFields.js.map +1 -1
  119. package/dist/utils/toStandardSchema.d.ts +5 -0
  120. package/dist/utils/toStandardSchema.d.ts.map +1 -0
  121. package/dist/utils/toStandardSchema.js +4 -0
  122. package/dist/utils/toStandardSchema.js.map +1 -0
  123. package/package.json +35 -10
  124. package/src/collection/getAccessField.ts +64 -0
  125. package/src/collection/index.ts +63 -0
  126. package/src/components/AccessField/index.client.tsx +344 -0
  127. package/src/components/AccessField/index.css +93 -0
  128. package/src/defineTool.ts +44 -0
  129. package/src/endpoint/access.ts +132 -0
  130. package/src/endpoint/index.ts +35 -0
  131. package/src/exports/client.ts +2 -0
  132. package/src/index.ts +35 -85
  133. package/src/mcp/buildMcpServer.ts +224 -0
  134. package/src/mcp/builtin/collections/authTools.ts +233 -0
  135. package/src/mcp/builtin/collections/createTool.ts +116 -0
  136. package/src/mcp/builtin/collections/deleteTool.ts +123 -0
  137. package/src/mcp/builtin/collections/findTool.ts +187 -0
  138. package/src/mcp/builtin/collections/updateTool.ts +205 -0
  139. package/src/mcp/builtin/globals/findTool.ts +96 -0
  140. package/src/mcp/builtin/globals/updateTool.ts +118 -0
  141. package/src/mcp/builtinTools.ts +84 -0
  142. package/src/mcp/sanitizeMCPConfig.ts +239 -0
  143. package/src/stdio.ts +98 -0
  144. package/src/types.ts +295 -490
  145. package/src/utils/getLogger.ts +22 -0
  146. package/src/utils/getPluginConfig.ts +24 -0
  147. package/src/utils/localAPIDefaults.ts +22 -0
  148. package/src/utils/resolveProjectRoot.ts +17 -0
  149. package/src/utils/schemaConversion/prepareCollectionSchema.ts +39 -0
  150. package/src/utils/schemaConversion/removeVirtualFieldsFromSchema.ts +3 -3
  151. package/src/utils/schemaConversion/sanitizeJsonSchema.ts +4 -4
  152. package/src/utils/schemaConversion/simplifyRelationshipFields.ts +11 -6
  153. package/src/utils/schemaConversion/transformPointFields.ts +6 -5
  154. package/src/utils/toStandardSchema.ts +9 -0
  155. package/dist/collections/createApiKeysCollection.d.ts +0 -7
  156. package/dist/collections/createApiKeysCollection.d.ts.map +0 -1
  157. package/dist/collections/createApiKeysCollection.js +0 -317
  158. package/dist/collections/createApiKeysCollection.js.map +0 -1
  159. package/dist/defaults.d.ts +0 -4
  160. package/dist/defaults.d.ts.map +0 -1
  161. package/dist/defaults.js +0 -5
  162. package/dist/defaults.js.map +0 -1
  163. package/dist/endpoints/mcp.d.ts +0 -4
  164. package/dist/endpoints/mcp.d.ts.map +0 -1
  165. package/dist/endpoints/mcp.js +0 -71
  166. package/dist/endpoints/mcp.js.map +0 -1
  167. package/dist/mcp/createRequest.d.ts +0 -3
  168. package/dist/mcp/createRequest.d.ts.map +0 -1
  169. package/dist/mcp/createRequest.js +0 -14
  170. package/dist/mcp/createRequest.js.map +0 -1
  171. package/dist/mcp/getMcpHandler.d.ts +0 -4
  172. package/dist/mcp/getMcpHandler.d.ts.map +0 -1
  173. package/dist/mcp/getMcpHandler.js +0 -231
  174. package/dist/mcp/getMcpHandler.js.map +0 -1
  175. package/dist/mcp/helpers/config.d.ts +0 -22
  176. package/dist/mcp/helpers/config.d.ts.map +0 -1
  177. package/dist/mcp/helpers/config.js +0 -153
  178. package/dist/mcp/helpers/config.js.map +0 -1
  179. package/dist/mcp/helpers/fields.d.ts +0 -19
  180. package/dist/mcp/helpers/fields.d.ts.map +0 -1
  181. package/dist/mcp/helpers/fields.js +0 -102
  182. package/dist/mcp/helpers/fields.js.map +0 -1
  183. package/dist/mcp/helpers/fileValidation.d.ts +0 -67
  184. package/dist/mcp/helpers/fileValidation.d.ts.map +0 -1
  185. package/dist/mcp/helpers/fileValidation.js +0 -267
  186. package/dist/mcp/helpers/fileValidation.js.map +0 -1
  187. package/dist/mcp/registerTool.d.ts +0 -6
  188. package/dist/mcp/registerTool.d.ts.map +0 -1
  189. package/dist/mcp/registerTool.js +0 -18
  190. package/dist/mcp/registerTool.js.map +0 -1
  191. package/dist/mcp/tools/auth/auth.d.ts +0 -4
  192. package/dist/mcp/tools/auth/auth.d.ts.map +0 -1
  193. package/dist/mcp/tools/auth/auth.js +0 -57
  194. package/dist/mcp/tools/auth/auth.js.map +0 -1
  195. package/dist/mcp/tools/auth/forgotPassword.d.ts +0 -4
  196. package/dist/mcp/tools/auth/forgotPassword.d.ts.map +0 -1
  197. package/dist/mcp/tools/auth/forgotPassword.js +0 -48
  198. package/dist/mcp/tools/auth/forgotPassword.js.map +0 -1
  199. package/dist/mcp/tools/auth/login.d.ts +0 -4
  200. package/dist/mcp/tools/auth/login.d.ts.map +0 -1
  201. package/dist/mcp/tools/auth/login.js +0 -51
  202. package/dist/mcp/tools/auth/login.js.map +0 -1
  203. package/dist/mcp/tools/auth/resetPassword.d.ts +0 -4
  204. package/dist/mcp/tools/auth/resetPassword.d.ts.map +0 -1
  205. package/dist/mcp/tools/auth/resetPassword.js +0 -49
  206. package/dist/mcp/tools/auth/resetPassword.js.map +0 -1
  207. package/dist/mcp/tools/auth/unlock.d.ts +0 -4
  208. package/dist/mcp/tools/auth/unlock.d.ts.map +0 -1
  209. package/dist/mcp/tools/auth/unlock.js +0 -48
  210. package/dist/mcp/tools/auth/unlock.js.map +0 -1
  211. package/dist/mcp/tools/auth/verify.d.ts +0 -4
  212. package/dist/mcp/tools/auth/verify.d.ts.map +0 -1
  213. package/dist/mcp/tools/auth/verify.js +0 -45
  214. package/dist/mcp/tools/auth/verify.js.map +0 -1
  215. package/dist/mcp/tools/collection/create.d.ts +0 -10
  216. package/dist/mcp/tools/collection/create.d.ts.map +0 -1
  217. package/dist/mcp/tools/collection/create.js +0 -139
  218. package/dist/mcp/tools/collection/create.js.map +0 -1
  219. package/dist/mcp/tools/collection/delete.d.ts +0 -10
  220. package/dist/mcp/tools/collection/delete.d.ts.map +0 -1
  221. package/dist/mcp/tools/collection/delete.js +0 -154
  222. package/dist/mcp/tools/collection/delete.js.map +0 -1
  223. package/dist/mcp/tools/collection/find.d.ts +0 -10
  224. package/dist/mcp/tools/collection/find.d.ts.map +0 -1
  225. package/dist/mcp/tools/collection/find.js +0 -165
  226. package/dist/mcp/tools/collection/find.js.map +0 -1
  227. package/dist/mcp/tools/collection/update.d.ts +0 -10
  228. package/dist/mcp/tools/collection/update.d.ts.map +0 -1
  229. package/dist/mcp/tools/collection/update.js +0 -209
  230. package/dist/mcp/tools/collection/update.js.map +0 -1
  231. package/dist/mcp/tools/config/find.d.ts +0 -10
  232. package/dist/mcp/tools/config/find.d.ts.map +0 -1
  233. package/dist/mcp/tools/config/find.js +0 -97
  234. package/dist/mcp/tools/config/find.js.map +0 -1
  235. package/dist/mcp/tools/config/update.d.ts +0 -10
  236. package/dist/mcp/tools/config/update.d.ts.map +0 -1
  237. package/dist/mcp/tools/config/update.js +0 -215
  238. package/dist/mcp/tools/config/update.js.map +0 -1
  239. package/dist/mcp/tools/global/find.d.ts +0 -5
  240. package/dist/mcp/tools/global/find.d.ts.map +0 -1
  241. package/dist/mcp/tools/global/find.js +0 -82
  242. package/dist/mcp/tools/global/find.js.map +0 -1
  243. package/dist/mcp/tools/global/update.d.ts +0 -6
  244. package/dist/mcp/tools/global/update.d.ts.map +0 -1
  245. package/dist/mcp/tools/global/update.js +0 -124
  246. package/dist/mcp/tools/global/update.js.map +0 -1
  247. package/dist/mcp/tools/job/create.d.ts +0 -10
  248. package/dist/mcp/tools/job/create.d.ts.map +0 -1
  249. package/dist/mcp/tools/job/create.js +0 -293
  250. package/dist/mcp/tools/job/create.js.map +0 -1
  251. package/dist/mcp/tools/job/run.d.ts +0 -10
  252. package/dist/mcp/tools/job/run.d.ts.map +0 -1
  253. package/dist/mcp/tools/job/run.js +0 -129
  254. package/dist/mcp/tools/job/run.js.map +0 -1
  255. package/dist/mcp/tools/job/update.d.ts +0 -11
  256. package/dist/mcp/tools/job/update.d.ts.map +0 -1
  257. package/dist/mcp/tools/job/update.js +0 -186
  258. package/dist/mcp/tools/job/update.js.map +0 -1
  259. package/dist/mcp/tools/resource/create.d.ts +0 -6
  260. package/dist/mcp/tools/resource/create.d.ts.map +0 -1
  261. package/dist/mcp/tools/resource/create.js +0 -124
  262. package/dist/mcp/tools/resource/create.js.map +0 -1
  263. package/dist/mcp/tools/resource/delete.d.ts +0 -5
  264. package/dist/mcp/tools/resource/delete.d.ts.map +0 -1
  265. package/dist/mcp/tools/resource/delete.js +0 -151
  266. package/dist/mcp/tools/resource/delete.js.map +0 -1
  267. package/dist/mcp/tools/resource/find.d.ts +0 -5
  268. package/dist/mcp/tools/resource/find.d.ts.map +0 -1
  269. package/dist/mcp/tools/resource/find.js +0 -170
  270. package/dist/mcp/tools/resource/find.js.map +0 -1
  271. package/dist/mcp/tools/resource/update.d.ts +0 -6
  272. package/dist/mcp/tools/resource/update.d.ts.map +0 -1
  273. package/dist/mcp/tools/resource/update.js +0 -256
  274. package/dist/mcp/tools/resource/update.js.map +0 -1
  275. package/dist/mcp/tools/schemas.d.ts +0 -457
  276. package/dist/mcp/tools/schemas.d.ts.map +0 -1
  277. package/dist/mcp/tools/schemas.js +0 -243
  278. package/dist/mcp/tools/schemas.js.map +0 -1
  279. package/dist/utils/adminEntitySettings.d.ts +0 -17
  280. package/dist/utils/adminEntitySettings.d.ts.map +0 -1
  281. package/dist/utils/adminEntitySettings.js +0 -41
  282. package/dist/utils/adminEntitySettings.js.map +0 -1
  283. package/dist/utils/createApiKeyFields.d.ts +0 -15
  284. package/dist/utils/createApiKeyFields.d.ts.map +0 -1
  285. package/dist/utils/createApiKeyFields.js +0 -57
  286. package/dist/utils/createApiKeyFields.js.map +0 -1
  287. package/dist/utils/getEnabledSlugs.d.ts +0 -13
  288. package/dist/utils/getEnabledSlugs.d.ts.map +0 -1
  289. package/dist/utils/getEnabledSlugs.js +0 -32
  290. package/dist/utils/getEnabledSlugs.js.map +0 -1
  291. package/dist/utils/schemaConversion/convertCollectionSchemaToZod.d.ts +0 -3
  292. package/dist/utils/schemaConversion/convertCollectionSchemaToZod.d.ts.map +0 -1
  293. package/dist/utils/schemaConversion/convertCollectionSchemaToZod.js +0 -43
  294. package/dist/utils/schemaConversion/convertCollectionSchemaToZod.js.map +0 -1
  295. package/src/collections/createApiKeysCollection.ts +0 -373
  296. package/src/defaults.ts +0 -3
  297. package/src/endpoints/mcp.ts +0 -91
  298. package/src/mcp/createRequest.ts +0 -13
  299. package/src/mcp/getMcpHandler.ts +0 -545
  300. package/src/mcp/helpers/config.ts +0 -213
  301. package/src/mcp/helpers/fields.ts +0 -154
  302. package/src/mcp/helpers/fileValidation.ts +0 -362
  303. package/src/mcp/registerTool.ts +0 -22
  304. package/src/mcp/tools/auth/auth.ts +0 -71
  305. package/src/mcp/tools/auth/forgotPassword.ts +0 -70
  306. package/src/mcp/tools/auth/login.ts +0 -72
  307. package/src/mcp/tools/auth/resetPassword.ts +0 -61
  308. package/src/mcp/tools/auth/unlock.ts +0 -64
  309. package/src/mcp/tools/auth/verify.ts +0 -57
  310. package/src/mcp/tools/collection/create.ts +0 -210
  311. package/src/mcp/tools/collection/delete.ts +0 -211
  312. package/src/mcp/tools/collection/find.ts +0 -224
  313. package/src/mcp/tools/collection/update.ts +0 -290
  314. package/src/mcp/tools/config/find.ts +0 -128
  315. package/src/mcp/tools/config/update.ts +0 -280
  316. package/src/mcp/tools/global/find.ts +0 -128
  317. package/src/mcp/tools/global/update.ts +0 -207
  318. package/src/mcp/tools/job/create.ts +0 -416
  319. package/src/mcp/tools/job/run.ts +0 -167
  320. package/src/mcp/tools/job/update.ts +0 -274
  321. package/src/mcp/tools/resource/create.ts +0 -211
  322. package/src/mcp/tools/resource/delete.ts +0 -218
  323. package/src/mcp/tools/resource/find.ts +0 -246
  324. package/src/mcp/tools/resource/update.ts +0 -383
  325. package/src/mcp/tools/schemas.ts +0 -520
  326. package/src/utils/adminEntitySettings.ts +0 -40
  327. package/src/utils/createApiKeyFields.ts +0 -72
  328. package/src/utils/getEnabledSlugs.ts +0 -42
  329. package/src/utils/schemaConversion/convertCollectionSchemaToZod.ts +0 -52
@@ -1,373 +0,0 @@
1
- import type { CollectionConfig, CollectionSlug } from 'payload'
2
-
3
- import type { MCPPluginConfig } from '../types.js'
4
-
5
- import { toCamelCase } from '../utils/camelCase.js'
6
- import { createApiKeyFields } from '../utils/createApiKeyFields.js'
7
-
8
- export const createAPIKeysCollection = (
9
- collections: MCPPluginConfig['collections'],
10
- globals: MCPPluginConfig['globals'],
11
- customTools: Array<{ description: string; name: string }> = [],
12
- experimentalTools: NonNullable<MCPPluginConfig['experimental']>['tools'] = {},
13
- pluginOptions: MCPPluginConfig,
14
- ): CollectionConfig => {
15
- const customToolsFields = customTools.map((tool) => {
16
- const camelCasedName = toCamelCase(tool.name)
17
- return {
18
- name: camelCasedName,
19
- type: 'checkbox' as const,
20
- admin: {
21
- description: tool.description,
22
- },
23
- defaultValue: true,
24
- label: camelCasedName,
25
- }
26
- })
27
-
28
- const customResourceFields =
29
- pluginOptions.mcp?.resources?.map((resource) => {
30
- const camelCasedName = toCamelCase(resource.name)
31
- return {
32
- name: camelCasedName,
33
- type: 'checkbox' as const,
34
- admin: {
35
- description: resource.description,
36
- },
37
- defaultValue: true,
38
- label: camelCasedName,
39
- }
40
- }) || []
41
-
42
- const customPromptFields =
43
- pluginOptions.mcp?.prompts?.map((prompt) => {
44
- const camelCasedName = toCamelCase(prompt.name)
45
- return {
46
- name: camelCasedName,
47
- type: 'checkbox' as const,
48
- admin: {
49
- description: prompt.description,
50
- },
51
- defaultValue: true,
52
- label: camelCasedName,
53
- }
54
- }) || []
55
-
56
- const userCollection = pluginOptions.userCollection
57
-
58
- return {
59
- slug: 'payload-mcp-api-keys',
60
- admin: {
61
- description:
62
- 'API keys control which collections, resources, tools, and prompts MCP clients can access',
63
- group: 'MCP',
64
- useAsTitle: 'label',
65
- },
66
- auth: {
67
- disableLocalStrategy: true,
68
- useAPIKey: true,
69
- },
70
- fields: [
71
- {
72
- name: 'user',
73
- type: 'relationship',
74
- admin: {
75
- description: 'The user that the API key is associated with.',
76
- },
77
- relationTo: userCollection as CollectionSlug,
78
- required: true,
79
- },
80
- {
81
- name: 'label',
82
- type: 'text',
83
- admin: {
84
- description: 'A useful label for the API key.',
85
- },
86
- },
87
- {
88
- name: 'description',
89
- type: 'text',
90
- admin: {
91
- description: 'The purpose of the API key.',
92
- },
93
- },
94
-
95
- ...createApiKeyFields({
96
- config: collections,
97
- configType: 'collection',
98
- }),
99
-
100
- ...createApiKeyFields({
101
- config: globals,
102
- configType: 'global',
103
- }),
104
-
105
- ...(customTools.length > 0
106
- ? [
107
- {
108
- type: 'collapsible' as const,
109
- admin: {
110
- description: 'Manage client access to tools',
111
- position: 'sidebar' as const,
112
- },
113
- fields: [
114
- {
115
- name: 'payload-mcp-tool',
116
- type: 'group' as const,
117
- fields: customToolsFields,
118
- label: false as const,
119
- },
120
- ],
121
- label: 'Tools',
122
- },
123
- ]
124
- : []),
125
-
126
- ...(pluginOptions.mcp?.resources && pluginOptions.mcp?.resources.length > 0
127
- ? [
128
- {
129
- type: 'collapsible' as const,
130
- admin: {
131
- description: 'Manage client access to resources',
132
- position: 'sidebar' as const,
133
- },
134
- fields: [
135
- {
136
- name: 'payload-mcp-resource',
137
- type: 'group' as const,
138
- fields: customResourceFields,
139
- label: false as const,
140
- },
141
- ],
142
- label: 'Resources',
143
- },
144
- ]
145
- : []),
146
-
147
- ...(pluginOptions.mcp?.prompts && pluginOptions.mcp?.prompts.length > 0
148
- ? [
149
- {
150
- type: 'collapsible' as const,
151
- admin: {
152
- description: 'Manage client access to prompts',
153
- position: 'sidebar' as const,
154
- },
155
- fields: [
156
- {
157
- name: 'payload-mcp-prompt',
158
- type: 'group' as const,
159
- fields: customPromptFields,
160
- label: false as const,
161
- },
162
- ],
163
- label: 'Prompts',
164
- },
165
- ]
166
- : []),
167
-
168
- // Experimental Tools
169
- ...(process.env.NODE_ENV === 'development' &&
170
- (experimentalTools?.collections?.enabled ||
171
- experimentalTools?.jobs?.enabled ||
172
- experimentalTools?.config?.enabled ||
173
- experimentalTools?.auth?.enabled)
174
- ? [
175
- {
176
- type: 'collapsible' as const,
177
- admin: {
178
- description: 'Manage client access to experimental tools',
179
- position: 'sidebar' as const,
180
- },
181
- fields: [
182
- ...(experimentalTools?.collections?.enabled
183
- ? [
184
- {
185
- name: 'collections',
186
- type: 'group' as const,
187
- fields: [
188
- {
189
- name: 'find',
190
- type: 'checkbox' as const,
191
- admin: {
192
- description:
193
- 'Allow LLMs to find and list Payload collections with optional content and document counts.',
194
- },
195
- defaultValue: false,
196
- },
197
- {
198
- name: 'create',
199
- type: 'checkbox' as const,
200
- admin: {
201
- description:
202
- 'Allow LLMs to create new Payload collections with specified fields and configuration.',
203
- },
204
- defaultValue: false,
205
- },
206
- {
207
- name: 'update',
208
- type: 'checkbox' as const,
209
- admin: {
210
- description:
211
- 'Allow LLMs to update existing Payload collections with new fields, modifications, or configuration changes.',
212
- },
213
- defaultValue: false,
214
- },
215
- {
216
- name: 'delete',
217
- type: 'checkbox' as const,
218
- admin: {
219
- description:
220
- 'Allow LLMs to delete Payload collections and optionally update the configuration.',
221
- },
222
- defaultValue: false,
223
- },
224
- ],
225
- },
226
- ]
227
- : []),
228
- ...(experimentalTools?.jobs?.enabled
229
- ? [
230
- {
231
- name: 'jobs',
232
- type: 'group' as const,
233
- fields: [
234
- {
235
- name: 'create',
236
- type: 'checkbox' as const,
237
- admin: {
238
- description:
239
- 'Allow LLMs to create new Payload jobs (tasks and workflows) with custom schemas and configuration.',
240
- },
241
- defaultValue: false,
242
- },
243
- {
244
- name: 'run',
245
- type: 'checkbox' as const,
246
- admin: {
247
- description:
248
- 'Allow LLMs to execute Payload jobs with custom input data and queue options.',
249
- },
250
- defaultValue: false,
251
- },
252
- {
253
- name: 'update',
254
- type: 'checkbox' as const,
255
- admin: {
256
- description:
257
- 'Allow LLMs to update existing Payload jobs with new schemas, configuration, or handler code.',
258
- },
259
- defaultValue: false,
260
- },
261
- ],
262
- },
263
- ]
264
- : []),
265
- ...(experimentalTools?.config?.enabled
266
- ? [
267
- {
268
- name: 'config',
269
- type: 'group' as const,
270
- fields: [
271
- {
272
- name: 'find',
273
- type: 'checkbox' as const,
274
- admin: {
275
- description:
276
- 'Allow LLMs to read and display a Payload configuration file.',
277
- },
278
- defaultValue: false,
279
- },
280
- {
281
- name: 'update',
282
- type: 'checkbox' as const,
283
- admin: {
284
- description:
285
- 'Allow LLMs to update a Payload configuration file with various modifications.',
286
- },
287
- defaultValue: false,
288
- },
289
- ],
290
- },
291
- ]
292
- : []),
293
- ...(experimentalTools?.auth?.enabled
294
- ? [
295
- {
296
- name: 'auth',
297
- type: 'group' as const,
298
- fields: [
299
- {
300
- name: 'auth',
301
- type: 'checkbox' as const,
302
- admin: {
303
- description:
304
- 'Allow LLMs to check authentication status for a user by setting custom headers. (e.g. {"Authorization": "Bearer <token>"})',
305
- },
306
- defaultValue: false,
307
- label: 'Check Auth Status',
308
- },
309
- {
310
- name: 'login',
311
- type: 'checkbox' as const,
312
- admin: {
313
- description:
314
- 'Allow LLMs to authenticate a user with email and password.',
315
- },
316
- defaultValue: false,
317
- label: 'User Login',
318
- },
319
- {
320
- name: 'verify',
321
- type: 'checkbox' as const,
322
- admin: {
323
- description:
324
- 'Allow LLMs to verify a user email with a verification token.',
325
- },
326
- defaultValue: false,
327
- label: 'Email Verification',
328
- },
329
- {
330
- name: 'resetPassword',
331
- type: 'checkbox' as const,
332
- admin: {
333
- description:
334
- 'Allow LLMs to reset a user password with a reset token.',
335
- },
336
- defaultValue: false,
337
- label: 'Reset Password',
338
- },
339
- {
340
- name: 'forgotPassword',
341
- type: 'checkbox' as const,
342
- admin: {
343
- description: 'Allow LLMs to send a password reset email to a user.',
344
- },
345
- defaultValue: false,
346
- label: 'Forgot Password',
347
- },
348
- {
349
- name: 'unlock',
350
- type: 'checkbox' as const,
351
- admin: {
352
- description:
353
- 'Allow LLMs to unlock a user account that has been locked due to failed login attempts.',
354
- },
355
- defaultValue: false,
356
- label: 'Unlock Account',
357
- },
358
- ],
359
- },
360
- ]
361
- : []),
362
- ],
363
- label: 'Experimental Tools',
364
- },
365
- ]
366
- : []),
367
- ],
368
- labels: {
369
- plural: 'API Keys',
370
- singular: 'API Key',
371
- },
372
- }
373
- }
package/src/defaults.ts DELETED
@@ -1,3 +0,0 @@
1
- export const defaults = {
2
- userCollection: 'users',
3
- }
@@ -1,91 +0,0 @@
1
- import crypto from 'crypto'
2
- import { type PayloadHandler, type TypedUser, UnauthorizedError, type Where } from 'payload'
3
-
4
- import type { MCPAccessSettings, MCPPluginConfig } from '../types.js'
5
-
6
- import { createRequestFromPayloadRequest } from '../mcp/createRequest.js'
7
- import { getMCPHandler } from '../mcp/getMcpHandler.js'
8
-
9
- export const initializeMCPHandler = (pluginOptions: MCPPluginConfig) => {
10
- const mcpHandler: PayloadHandler = async (req) => {
11
- const { payload } = req
12
- const MCPOptions = pluginOptions.mcp || {}
13
- const MCPHandlerOptions = MCPOptions.handlerOptions || {}
14
- const useVerboseLogs = MCPHandlerOptions.verboseLogs ?? false
15
-
16
- req.payloadAPI = 'MCP' as const
17
-
18
- const getDefaultMcpAccessSettings = async (overrideApiKey?: null | string) => {
19
- const apiKey =
20
- (overrideApiKey ?? req.headers.get('Authorization')?.startsWith('Bearer '))
21
- ? req.headers.get('Authorization')?.replace('Bearer ', '').trim()
22
- : null
23
-
24
- if (apiKey === null) {
25
- throw new UnauthorizedError()
26
- }
27
-
28
- const sha256APIKeyIndex = crypto
29
- .createHmac('sha256', payload.secret)
30
- .update(apiKey || '')
31
- .digest('hex')
32
-
33
- const where: Where = {
34
- apiKeyIndex: {
35
- equals: sha256APIKeyIndex,
36
- },
37
- }
38
-
39
- const { docs } = await payload.find({
40
- collection: 'payload-mcp-api-keys',
41
- depth: 1,
42
- limit: 1,
43
- pagination: false,
44
- where,
45
- })
46
-
47
- if (docs.length === 0) {
48
- throw new UnauthorizedError()
49
- }
50
-
51
- if (useVerboseLogs) {
52
- payload.logger.info('[payload-mcp] API Key is valid')
53
- }
54
-
55
- const user = docs[0]?.user as TypedUser
56
- user.collection = pluginOptions.userCollection as string
57
- user._strategy = 'mcp-api-key' as const
58
-
59
- return docs[0] as unknown as MCPAccessSettings
60
- }
61
-
62
- const mcpAccessSettings = pluginOptions.overrideAuth
63
- ? await pluginOptions.overrideAuth(req, getDefaultMcpAccessSettings)
64
- : await getDefaultMcpAccessSettings()
65
-
66
- // @modelcontextprotocol/sdk's StreamableHTTPServerTransport uses @hono/node-server's
67
- // getRequestListener, which replaces global.Request and global.Response with Hono
68
- // custom classes. Unfortunately, we cannot pass overrideGlobalObjects: false because the option is
69
- // consumed inside the SDK transport and is not exposed to callers.
70
- // Save originals here and restore after the handler resolves so that Next.js
71
- // instanceof Response checks on subsequent route handlers keep working.
72
- const globals = globalThis as Record<string, unknown>
73
- const originalResponse = globals['Response']
74
- const originalRequest = globals['Request']
75
-
76
- const handler = getMCPHandler(pluginOptions, mcpAccessSettings, req)
77
- const request = createRequestFromPayloadRequest(req)
78
-
79
- try {
80
- return await handler(request)
81
- } finally {
82
- if (globals['Response'] !== originalResponse) {
83
- Object.defineProperty(globalThis, 'Response', { value: originalResponse })
84
- }
85
- if (globals['Request'] !== originalRequest) {
86
- Object.defineProperty(globalThis, 'Request', { value: originalRequest })
87
- }
88
- }
89
- }
90
- return mcpHandler
91
- }
@@ -1,13 +0,0 @@
1
- import { AuthenticationError, type PayloadRequest } from 'payload'
2
-
3
- export const createRequestFromPayloadRequest = (req: PayloadRequest) => {
4
- if (!req.url) {
5
- throw new AuthenticationError()
6
- }
7
- return new Request(req.url, {
8
- body: req.body,
9
- duplex: 'half',
10
- headers: req.headers,
11
- method: req.method,
12
- } as { duplex: 'half' } & RequestInit)
13
- }