@payloadcms/plugin-mcp 4.0.0-internal.5b1e7cd → 4.0.0-internal.a0ef1b8

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 (340) hide show
  1. package/bin.js +39 -0
  2. package/dist/@types/assets.d.js +2 -0
  3. package/dist/@types/assets.d.js.map +1 -0
  4. package/dist/collection/getAccessField.d.ts +12 -0
  5. package/dist/collection/getAccessField.d.ts.map +1 -0
  6. package/dist/collection/getAccessField.js +57 -0
  7. package/dist/collection/getAccessField.js.map +1 -0
  8. package/dist/collection/index.d.ts +6 -0
  9. package/dist/collection/index.d.ts.map +1 -0
  10. package/dist/collection/index.js +60 -0
  11. package/dist/collection/index.js.map +1 -0
  12. package/dist/components/AccessField/index.client.d.ts +10 -0
  13. package/dist/components/AccessField/index.client.d.ts.map +1 -0
  14. package/dist/components/AccessField/index.client.js +305 -0
  15. package/dist/components/AccessField/index.client.js.map +1 -0
  16. package/dist/components/AccessField/index.css +93 -0
  17. package/dist/defineTool.d.ts +26 -0
  18. package/dist/defineTool.d.ts.map +1 -0
  19. package/dist/defineTool.js +37 -0
  20. package/dist/defineTool.js.map +1 -0
  21. package/dist/endpoint/access.d.ts +10 -0
  22. package/dist/endpoint/access.d.ts.map +1 -0
  23. package/dist/endpoint/access.js +106 -0
  24. package/dist/endpoint/access.js.map +1 -0
  25. package/dist/endpoint/index.d.ts +3 -0
  26. package/dist/endpoint/index.d.ts.map +1 -0
  27. package/dist/endpoint/index.js +36 -0
  28. package/dist/endpoint/index.js.map +1 -0
  29. package/dist/exports/client.d.ts +2 -0
  30. package/dist/exports/client.d.ts.map +1 -0
  31. package/dist/exports/client.js +4 -0
  32. package/dist/exports/client.js.map +1 -0
  33. package/dist/index.d.ts +4 -7
  34. package/dist/index.d.ts.map +1 -1
  35. package/dist/index.js +44 -67
  36. package/dist/index.js.map +1 -1
  37. package/dist/mcp/buildMcpServer.d.ts +19 -0
  38. package/dist/mcp/buildMcpServer.d.ts.map +1 -0
  39. package/dist/mcp/buildMcpServer.js +170 -0
  40. package/dist/mcp/buildMcpServer.js.map +1 -0
  41. package/dist/mcp/builtin/collections/authTools.d.ts +7 -0
  42. package/dist/mcp/builtin/collections/authTools.d.ts.map +1 -0
  43. package/dist/mcp/builtin/collections/authTools.js +250 -0
  44. package/dist/mcp/builtin/collections/authTools.js.map +1 -0
  45. package/dist/mcp/builtin/collections/createTool.d.ts +2 -0
  46. package/dist/mcp/builtin/collections/createTool.d.ts.map +1 -0
  47. package/dist/mcp/builtin/collections/createTool.js +91 -0
  48. package/dist/mcp/builtin/collections/createTool.js.map +1 -0
  49. package/dist/mcp/builtin/collections/deleteTool.d.ts +2 -0
  50. package/dist/mcp/builtin/collections/deleteTool.d.ts.map +1 -0
  51. package/dist/mcp/builtin/collections/deleteTool.js +117 -0
  52. package/dist/mcp/builtin/collections/deleteTool.js.map +1 -0
  53. package/dist/mcp/builtin/collections/findTool.d.ts +2 -0
  54. package/dist/mcp/builtin/collections/findTool.d.ts.map +1 -0
  55. package/dist/mcp/builtin/collections/findTool.js +159 -0
  56. package/dist/mcp/builtin/collections/findTool.js.map +1 -0
  57. package/dist/mcp/builtin/collections/updateTool.d.ts +2 -0
  58. package/dist/mcp/builtin/collections/updateTool.d.ts.map +1 -0
  59. package/dist/mcp/builtin/collections/updateTool.js +191 -0
  60. package/dist/mcp/builtin/collections/updateTool.js.map +1 -0
  61. package/dist/mcp/builtin/globals/findTool.d.ts +2 -0
  62. package/dist/mcp/builtin/globals/findTool.d.ts.map +1 -0
  63. package/dist/mcp/builtin/globals/findTool.js +76 -0
  64. package/dist/mcp/builtin/globals/findTool.js.map +1 -0
  65. package/dist/mcp/builtin/globals/updateTool.d.ts +2 -0
  66. package/dist/mcp/builtin/globals/updateTool.d.ts.map +1 -0
  67. package/dist/mcp/builtin/globals/updateTool.js +96 -0
  68. package/dist/mcp/builtin/globals/updateTool.js.map +1 -0
  69. package/dist/mcp/builtinTools.d.ts +37 -0
  70. package/dist/mcp/builtinTools.d.ts.map +1 -0
  71. package/dist/mcp/builtinTools.js +64 -0
  72. package/dist/mcp/builtinTools.js.map +1 -0
  73. package/dist/mcp/sanitizeMCPConfig.d.ts +17 -0
  74. package/dist/mcp/sanitizeMCPConfig.d.ts.map +1 -0
  75. package/dist/mcp/sanitizeMCPConfig.js +167 -0
  76. package/dist/mcp/sanitizeMCPConfig.js.map +1 -0
  77. package/dist/stdio.d.ts +8 -0
  78. package/dist/stdio.d.ts.map +1 -0
  79. package/dist/stdio.js +89 -0
  80. package/dist/stdio.js.map +1 -0
  81. package/dist/types.d.ts +262 -455
  82. package/dist/types.d.ts.map +1 -1
  83. package/dist/types.js +6 -1
  84. package/dist/types.js.map +1 -1
  85. package/dist/utils/camelCase.d.ts.map +1 -1
  86. package/dist/utils/getLogger.d.ts +10 -0
  87. package/dist/utils/getLogger.d.ts.map +1 -0
  88. package/dist/utils/getLogger.js +22 -0
  89. package/dist/utils/getLogger.js.map +1 -0
  90. package/dist/utils/getPluginConfig.d.ts +12 -0
  91. package/dist/utils/getPluginConfig.d.ts.map +1 -0
  92. package/dist/utils/getPluginConfig.js +15 -0
  93. package/dist/utils/getPluginConfig.js.map +1 -0
  94. package/dist/utils/localAPIDefaults.d.ts +20 -0
  95. package/dist/utils/localAPIDefaults.d.ts.map +1 -0
  96. package/dist/utils/localAPIDefaults.js +19 -0
  97. package/dist/utils/localAPIDefaults.js.map +1 -0
  98. package/dist/utils/resolveProjectRoot.d.ts +7 -0
  99. package/dist/utils/resolveProjectRoot.d.ts.map +1 -0
  100. package/dist/utils/resolveProjectRoot.js +15 -0
  101. package/dist/utils/resolveProjectRoot.js.map +1 -0
  102. package/dist/utils/schemaConversion/buildToolInput.d.ts +29 -0
  103. package/dist/utils/schemaConversion/buildToolInput.d.ts.map +1 -0
  104. package/dist/utils/schemaConversion/buildToolInput.js +51 -0
  105. package/dist/utils/schemaConversion/buildToolInput.js.map +1 -0
  106. package/dist/utils/schemaConversion/removeVirtualFieldsFromSchema.d.ts +2 -2
  107. package/dist/utils/schemaConversion/removeVirtualFieldsFromSchema.d.ts.map +1 -1
  108. package/dist/utils/schemaConversion/removeVirtualFieldsFromSchema.js.map +1 -1
  109. package/dist/utils/schemaConversion/sanitizeEntitySchema.d.ts +15 -0
  110. package/dist/utils/schemaConversion/sanitizeEntitySchema.d.ts.map +1 -0
  111. package/dist/utils/schemaConversion/sanitizeEntitySchema.js +464 -0
  112. package/dist/utils/schemaConversion/sanitizeEntitySchema.js.map +1 -0
  113. package/dist/utils/schemaConversion/sanitizeEntitySchema.spec.js +158 -0
  114. package/dist/utils/schemaConversion/sanitizeEntitySchema.spec.js.map +1 -0
  115. package/dist/utils/toStandardSchema.d.ts +5 -0
  116. package/dist/utils/toStandardSchema.d.ts.map +1 -0
  117. package/dist/utils/toStandardSchema.js +4 -0
  118. package/dist/utils/toStandardSchema.js.map +1 -0
  119. package/package.json +35 -10
  120. package/src/@types/assets.d.ts +3 -0
  121. package/src/collection/getAccessField.ts +64 -0
  122. package/src/collection/index.ts +64 -0
  123. package/src/components/AccessField/index.client.tsx +344 -0
  124. package/src/components/AccessField/index.css +93 -0
  125. package/src/defineTool.ts +44 -0
  126. package/src/endpoint/access.ts +132 -0
  127. package/src/endpoint/index.ts +35 -0
  128. package/src/exports/client.ts +2 -0
  129. package/src/index.ts +35 -85
  130. package/src/mcp/buildMcpServer.ts +229 -0
  131. package/src/mcp/builtin/collections/authTools.ts +233 -0
  132. package/src/mcp/builtin/collections/createTool.ts +116 -0
  133. package/src/mcp/builtin/collections/deleteTool.ts +123 -0
  134. package/src/mcp/builtin/collections/findTool.ts +187 -0
  135. package/src/mcp/builtin/collections/updateTool.ts +210 -0
  136. package/src/mcp/builtin/globals/findTool.ts +96 -0
  137. package/src/mcp/builtin/globals/updateTool.ts +120 -0
  138. package/src/mcp/builtinTools.ts +84 -0
  139. package/src/mcp/sanitizeMCPConfig.ts +239 -0
  140. package/src/stdio.ts +98 -0
  141. package/src/types.ts +295 -490
  142. package/src/utils/getLogger.ts +22 -0
  143. package/src/utils/getPluginConfig.ts +24 -0
  144. package/src/utils/localAPIDefaults.ts +22 -0
  145. package/src/utils/resolveProjectRoot.ts +17 -0
  146. package/src/utils/schemaConversion/buildToolInput.ts +68 -0
  147. package/src/utils/schemaConversion/removeVirtualFieldsFromSchema.ts +3 -3
  148. package/src/utils/schemaConversion/sanitizeEntitySchema.spec.ts +103 -0
  149. package/src/utils/schemaConversion/sanitizeEntitySchema.ts +529 -0
  150. package/src/utils/toStandardSchema.ts +9 -0
  151. package/dist/collections/createApiKeysCollection.d.ts +0 -7
  152. package/dist/collections/createApiKeysCollection.d.ts.map +0 -1
  153. package/dist/collections/createApiKeysCollection.js +0 -317
  154. package/dist/collections/createApiKeysCollection.js.map +0 -1
  155. package/dist/defaults.d.ts +0 -4
  156. package/dist/defaults.d.ts.map +0 -1
  157. package/dist/defaults.js +0 -5
  158. package/dist/defaults.js.map +0 -1
  159. package/dist/endpoints/mcp.d.ts +0 -4
  160. package/dist/endpoints/mcp.d.ts.map +0 -1
  161. package/dist/endpoints/mcp.js +0 -71
  162. package/dist/endpoints/mcp.js.map +0 -1
  163. package/dist/mcp/createRequest.d.ts +0 -3
  164. package/dist/mcp/createRequest.d.ts.map +0 -1
  165. package/dist/mcp/createRequest.js +0 -14
  166. package/dist/mcp/createRequest.js.map +0 -1
  167. package/dist/mcp/getMcpHandler.d.ts +0 -4
  168. package/dist/mcp/getMcpHandler.d.ts.map +0 -1
  169. package/dist/mcp/getMcpHandler.js +0 -231
  170. package/dist/mcp/getMcpHandler.js.map +0 -1
  171. package/dist/mcp/helpers/config.d.ts +0 -22
  172. package/dist/mcp/helpers/config.d.ts.map +0 -1
  173. package/dist/mcp/helpers/config.js +0 -153
  174. package/dist/mcp/helpers/config.js.map +0 -1
  175. package/dist/mcp/helpers/fields.d.ts +0 -19
  176. package/dist/mcp/helpers/fields.d.ts.map +0 -1
  177. package/dist/mcp/helpers/fields.js +0 -102
  178. package/dist/mcp/helpers/fields.js.map +0 -1
  179. package/dist/mcp/helpers/fileValidation.d.ts +0 -67
  180. package/dist/mcp/helpers/fileValidation.d.ts.map +0 -1
  181. package/dist/mcp/helpers/fileValidation.js +0 -267
  182. package/dist/mcp/helpers/fileValidation.js.map +0 -1
  183. package/dist/mcp/registerTool.d.ts +0 -6
  184. package/dist/mcp/registerTool.d.ts.map +0 -1
  185. package/dist/mcp/registerTool.js +0 -18
  186. package/dist/mcp/registerTool.js.map +0 -1
  187. package/dist/mcp/tools/auth/auth.d.ts +0 -4
  188. package/dist/mcp/tools/auth/auth.d.ts.map +0 -1
  189. package/dist/mcp/tools/auth/auth.js +0 -57
  190. package/dist/mcp/tools/auth/auth.js.map +0 -1
  191. package/dist/mcp/tools/auth/forgotPassword.d.ts +0 -4
  192. package/dist/mcp/tools/auth/forgotPassword.d.ts.map +0 -1
  193. package/dist/mcp/tools/auth/forgotPassword.js +0 -48
  194. package/dist/mcp/tools/auth/forgotPassword.js.map +0 -1
  195. package/dist/mcp/tools/auth/login.d.ts +0 -4
  196. package/dist/mcp/tools/auth/login.d.ts.map +0 -1
  197. package/dist/mcp/tools/auth/login.js +0 -51
  198. package/dist/mcp/tools/auth/login.js.map +0 -1
  199. package/dist/mcp/tools/auth/resetPassword.d.ts +0 -4
  200. package/dist/mcp/tools/auth/resetPassword.d.ts.map +0 -1
  201. package/dist/mcp/tools/auth/resetPassword.js +0 -49
  202. package/dist/mcp/tools/auth/resetPassword.js.map +0 -1
  203. package/dist/mcp/tools/auth/unlock.d.ts +0 -4
  204. package/dist/mcp/tools/auth/unlock.d.ts.map +0 -1
  205. package/dist/mcp/tools/auth/unlock.js +0 -48
  206. package/dist/mcp/tools/auth/unlock.js.map +0 -1
  207. package/dist/mcp/tools/auth/verify.d.ts +0 -4
  208. package/dist/mcp/tools/auth/verify.d.ts.map +0 -1
  209. package/dist/mcp/tools/auth/verify.js +0 -45
  210. package/dist/mcp/tools/auth/verify.js.map +0 -1
  211. package/dist/mcp/tools/collection/create.d.ts +0 -10
  212. package/dist/mcp/tools/collection/create.d.ts.map +0 -1
  213. package/dist/mcp/tools/collection/create.js +0 -139
  214. package/dist/mcp/tools/collection/create.js.map +0 -1
  215. package/dist/mcp/tools/collection/delete.d.ts +0 -10
  216. package/dist/mcp/tools/collection/delete.d.ts.map +0 -1
  217. package/dist/mcp/tools/collection/delete.js +0 -154
  218. package/dist/mcp/tools/collection/delete.js.map +0 -1
  219. package/dist/mcp/tools/collection/find.d.ts +0 -10
  220. package/dist/mcp/tools/collection/find.d.ts.map +0 -1
  221. package/dist/mcp/tools/collection/find.js +0 -165
  222. package/dist/mcp/tools/collection/find.js.map +0 -1
  223. package/dist/mcp/tools/collection/update.d.ts +0 -10
  224. package/dist/mcp/tools/collection/update.d.ts.map +0 -1
  225. package/dist/mcp/tools/collection/update.js +0 -209
  226. package/dist/mcp/tools/collection/update.js.map +0 -1
  227. package/dist/mcp/tools/config/find.d.ts +0 -10
  228. package/dist/mcp/tools/config/find.d.ts.map +0 -1
  229. package/dist/mcp/tools/config/find.js +0 -97
  230. package/dist/mcp/tools/config/find.js.map +0 -1
  231. package/dist/mcp/tools/config/update.d.ts +0 -10
  232. package/dist/mcp/tools/config/update.d.ts.map +0 -1
  233. package/dist/mcp/tools/config/update.js +0 -215
  234. package/dist/mcp/tools/config/update.js.map +0 -1
  235. package/dist/mcp/tools/global/find.d.ts +0 -5
  236. package/dist/mcp/tools/global/find.d.ts.map +0 -1
  237. package/dist/mcp/tools/global/find.js +0 -82
  238. package/dist/mcp/tools/global/find.js.map +0 -1
  239. package/dist/mcp/tools/global/update.d.ts +0 -6
  240. package/dist/mcp/tools/global/update.d.ts.map +0 -1
  241. package/dist/mcp/tools/global/update.js +0 -124
  242. package/dist/mcp/tools/global/update.js.map +0 -1
  243. package/dist/mcp/tools/job/create.d.ts +0 -10
  244. package/dist/mcp/tools/job/create.d.ts.map +0 -1
  245. package/dist/mcp/tools/job/create.js +0 -293
  246. package/dist/mcp/tools/job/create.js.map +0 -1
  247. package/dist/mcp/tools/job/run.d.ts +0 -10
  248. package/dist/mcp/tools/job/run.d.ts.map +0 -1
  249. package/dist/mcp/tools/job/run.js +0 -129
  250. package/dist/mcp/tools/job/run.js.map +0 -1
  251. package/dist/mcp/tools/job/update.d.ts +0 -11
  252. package/dist/mcp/tools/job/update.d.ts.map +0 -1
  253. package/dist/mcp/tools/job/update.js +0 -186
  254. package/dist/mcp/tools/job/update.js.map +0 -1
  255. package/dist/mcp/tools/resource/create.d.ts +0 -6
  256. package/dist/mcp/tools/resource/create.d.ts.map +0 -1
  257. package/dist/mcp/tools/resource/create.js +0 -124
  258. package/dist/mcp/tools/resource/create.js.map +0 -1
  259. package/dist/mcp/tools/resource/delete.d.ts +0 -5
  260. package/dist/mcp/tools/resource/delete.d.ts.map +0 -1
  261. package/dist/mcp/tools/resource/delete.js +0 -151
  262. package/dist/mcp/tools/resource/delete.js.map +0 -1
  263. package/dist/mcp/tools/resource/find.d.ts +0 -5
  264. package/dist/mcp/tools/resource/find.d.ts.map +0 -1
  265. package/dist/mcp/tools/resource/find.js +0 -170
  266. package/dist/mcp/tools/resource/find.js.map +0 -1
  267. package/dist/mcp/tools/resource/update.d.ts +0 -6
  268. package/dist/mcp/tools/resource/update.d.ts.map +0 -1
  269. package/dist/mcp/tools/resource/update.js +0 -256
  270. package/dist/mcp/tools/resource/update.js.map +0 -1
  271. package/dist/mcp/tools/schemas.d.ts +0 -457
  272. package/dist/mcp/tools/schemas.d.ts.map +0 -1
  273. package/dist/mcp/tools/schemas.js +0 -243
  274. package/dist/mcp/tools/schemas.js.map +0 -1
  275. package/dist/utils/adminEntitySettings.d.ts +0 -17
  276. package/dist/utils/adminEntitySettings.d.ts.map +0 -1
  277. package/dist/utils/adminEntitySettings.js +0 -41
  278. package/dist/utils/adminEntitySettings.js.map +0 -1
  279. package/dist/utils/createApiKeyFields.d.ts +0 -15
  280. package/dist/utils/createApiKeyFields.d.ts.map +0 -1
  281. package/dist/utils/createApiKeyFields.js +0 -57
  282. package/dist/utils/createApiKeyFields.js.map +0 -1
  283. package/dist/utils/getEnabledSlugs.d.ts +0 -13
  284. package/dist/utils/getEnabledSlugs.d.ts.map +0 -1
  285. package/dist/utils/getEnabledSlugs.js +0 -32
  286. package/dist/utils/getEnabledSlugs.js.map +0 -1
  287. package/dist/utils/schemaConversion/convertCollectionSchemaToZod.d.ts +0 -3
  288. package/dist/utils/schemaConversion/convertCollectionSchemaToZod.d.ts.map +0 -1
  289. package/dist/utils/schemaConversion/convertCollectionSchemaToZod.js +0 -43
  290. package/dist/utils/schemaConversion/convertCollectionSchemaToZod.js.map +0 -1
  291. package/dist/utils/schemaConversion/sanitizeJsonSchema.d.ts +0 -13
  292. package/dist/utils/schemaConversion/sanitizeJsonSchema.d.ts.map +0 -1
  293. package/dist/utils/schemaConversion/sanitizeJsonSchema.js +0 -56
  294. package/dist/utils/schemaConversion/sanitizeJsonSchema.js.map +0 -1
  295. package/dist/utils/schemaConversion/simplifyRelationshipFields.d.ts +0 -20
  296. package/dist/utils/schemaConversion/simplifyRelationshipFields.d.ts.map +0 -1
  297. package/dist/utils/schemaConversion/simplifyRelationshipFields.js +0 -53
  298. package/dist/utils/schemaConversion/simplifyRelationshipFields.js.map +0 -1
  299. package/dist/utils/schemaConversion/transformPointFields.d.ts +0 -3
  300. package/dist/utils/schemaConversion/transformPointFields.d.ts.map +0 -1
  301. package/dist/utils/schemaConversion/transformPointFields.js +0 -51
  302. package/dist/utils/schemaConversion/transformPointFields.js.map +0 -1
  303. package/src/collections/createApiKeysCollection.ts +0 -373
  304. package/src/defaults.ts +0 -3
  305. package/src/endpoints/mcp.ts +0 -91
  306. package/src/mcp/createRequest.ts +0 -13
  307. package/src/mcp/getMcpHandler.ts +0 -545
  308. package/src/mcp/helpers/config.ts +0 -213
  309. package/src/mcp/helpers/fields.ts +0 -154
  310. package/src/mcp/helpers/fileValidation.ts +0 -362
  311. package/src/mcp/registerTool.ts +0 -22
  312. package/src/mcp/tools/auth/auth.ts +0 -71
  313. package/src/mcp/tools/auth/forgotPassword.ts +0 -70
  314. package/src/mcp/tools/auth/login.ts +0 -72
  315. package/src/mcp/tools/auth/resetPassword.ts +0 -61
  316. package/src/mcp/tools/auth/unlock.ts +0 -64
  317. package/src/mcp/tools/auth/verify.ts +0 -57
  318. package/src/mcp/tools/collection/create.ts +0 -210
  319. package/src/mcp/tools/collection/delete.ts +0 -211
  320. package/src/mcp/tools/collection/find.ts +0 -224
  321. package/src/mcp/tools/collection/update.ts +0 -290
  322. package/src/mcp/tools/config/find.ts +0 -128
  323. package/src/mcp/tools/config/update.ts +0 -280
  324. package/src/mcp/tools/global/find.ts +0 -128
  325. package/src/mcp/tools/global/update.ts +0 -207
  326. package/src/mcp/tools/job/create.ts +0 -416
  327. package/src/mcp/tools/job/run.ts +0 -167
  328. package/src/mcp/tools/job/update.ts +0 -274
  329. package/src/mcp/tools/resource/create.ts +0 -211
  330. package/src/mcp/tools/resource/delete.ts +0 -218
  331. package/src/mcp/tools/resource/find.ts +0 -246
  332. package/src/mcp/tools/resource/update.ts +0 -383
  333. package/src/mcp/tools/schemas.ts +0 -520
  334. package/src/utils/adminEntitySettings.ts +0 -40
  335. package/src/utils/createApiKeyFields.ts +0 -72
  336. package/src/utils/getEnabledSlugs.ts +0 -42
  337. package/src/utils/schemaConversion/convertCollectionSchemaToZod.ts +0 -52
  338. package/src/utils/schemaConversion/sanitizeJsonSchema.ts +0 -62
  339. package/src/utils/schemaConversion/simplifyRelationshipFields.ts +0 -65
  340. package/src/utils/schemaConversion/transformPointFields.ts +0 -55
package/src/index.ts CHANGED
@@ -1,113 +1,63 @@
1
- import { definePlugin } from 'payload'
1
+ import { defaultUserCollection, definePlugin } from 'payload'
2
2
 
3
- import type { MCPAccessSettings, MCPPluginConfig } from './types.js'
3
+ import type { AuthorizedMCP, MCPPluginConfig, SanitizedMCPPluginConfig } from './types.js'
4
4
 
5
- import { createAPIKeysCollection } from './collections/createApiKeysCollection.js'
6
- import { initializeMCPHandler } from './endpoints/mcp.js'
5
+ import { getAPIKeysCollection } from './collection/index.js'
6
+ import { mcpEndpoint } from './endpoint/index.js'
7
+ import { sanitizeMCPConfig } from './mcp/sanitizeMCPConfig.js'
7
8
 
8
9
  declare module 'payload' {
9
10
  export interface PayloadRequest {
10
11
  payloadAPI: 'GraphQL' | 'local' | 'MCP' | 'REST'
11
12
  }
12
13
  interface RegisteredPlugins {
14
+ /** After the plugin's `plugin` callback runs, `options` holds the sanitized config. */
13
15
  '@payloadcms/plugin-mcp': MCPPluginConfig
14
16
  }
15
17
  }
16
18
 
17
- import { defaults } from './defaults.js'
19
+ export type { AuthorizedMCP, MCPPluginConfig, SanitizedMCPPluginConfig }
18
20
 
19
- export type { MCPAccessSettings, MCPPluginConfig }
21
+ export { defineCollectionTool, defineGlobalTool, definePrompt, defineTool } from './defineTool.js'
20
22
 
21
- /**
22
- * The MCP Plugin for Payload. This plugin allows you to add MCP capabilities to your Payload project.
23
- *
24
- * @param pluginOptions - The options for the MCP plugin.
25
- */
26
23
  export const mcpPlugin = definePlugin<MCPPluginConfig>({
27
24
  slug: '@payloadcms/plugin-mcp',
28
25
  order: 10,
29
- plugin: ({ config, plugins: _plugins, ...pluginOptions }) => {
30
- if (!config.collections) {
31
- config.collections = []
26
+ plugin: ({ config, plugins, ...rawConfig }) => {
27
+ // Our `payload-mcp-api-keys` is auth-enabled; if it'd be the only auth
28
+ // collection, Payload's later sanitize would pick it as `admin.user`.
29
+ // Pre-seed the default user collection to prevent that.
30
+ if (!config.admin?.user) {
31
+ const firstCollectionWithAuth = (config.collections ?? []).find(({ auth }) => Boolean(auth))
32
+ if (!firstCollectionWithAuth) {
33
+ ;(config.collections ??= []).push(defaultUserCollection)
34
+ }
32
35
  }
33
36
 
34
- // Collections
35
- const collections = pluginOptions.collections || {}
36
- // Globals
37
- const globals = pluginOptions.globals || {}
38
- // Extract custom tools for the global config
39
- const customTools =
40
- pluginOptions.mcp?.tools?.map((tool) => ({
41
- name: tool.name,
42
- description: tool.description,
43
- })) || []
37
+ const pluginConfig = sanitizeMCPConfig({ config, pluginConfig: rawConfig })
44
38
 
45
- // User Collection
46
- pluginOptions.userCollection =
47
- pluginOptions.userCollection ?? config?.admin?.user ?? defaults.userCollection
48
-
49
- const experimentalTools = pluginOptions?.experimental?.tools || {}
50
-
51
- /**
52
- * API Keys
53
- * --------
54
- * High resolution control over MCP capabilities is crucial when using Payload with LLMs.
55
- *
56
- * This API Keys collection has ways for admins to create API keys and allow or disallow the MCP capabilities.
57
- * This is useful when Admins want to allow or disallow the use of the MCP capabilities in real time.
58
- * For example:
59
- * - If a collection has all of its capabilities enabled, admins can allow or disallow the create, update, delete, and find capabilities on that collection.
60
- * - If a collection only has the find capability enabled, admins can only allow or disallow the find capability on that collection.
61
- * - If a global has all of its capabilities enabled, admins can allow or disallow the find and update capabilities on that global.
62
- * - If a custom tool has gone haywire, admins can disallow that tool.
63
- *
64
- */
65
- const apiKeyCollection = createAPIKeysCollection(
66
- collections,
67
- globals,
68
- customTools,
69
- experimentalTools,
70
- pluginOptions,
71
- )
72
- if (pluginOptions.overrideApiKeyCollection) {
73
- config.collections.push(pluginOptions.overrideApiKeyCollection(apiKeyCollection))
74
- } else {
75
- config.collections.push(apiKeyCollection)
39
+ // Stash the sanitized config on plugin options so `getPluginConfig()` reads it.
40
+ const registered = plugins['@payloadcms/plugin-mcp']
41
+ if (registered) {
42
+ // @ts-expect-error
43
+ registered.sanitizedOptions = pluginConfig as unknown as typeof registered.options
76
44
  }
77
45
 
78
- /**
79
- * If the plugin is disabled, we still want to keep added collections/fields so the database schema is consistent which is important for migrations.
80
- * If your plugin heavily modifies the database schema, you may want to remove this property.
81
- */
82
- if (pluginOptions.disabled) {
46
+ ;(config.collections ??= []).push(getAPIKeysCollection({ pluginConfig }))
47
+
48
+ // Keep the API-keys collection registered even when disabled, so DB schema
49
+ // and generated types don't drift between enabled/disabled environments.
50
+ if (pluginConfig.disabled) {
83
51
  return config
84
52
  }
85
53
 
86
- if (!config.endpoints) {
87
- config.endpoints = []
54
+ return {
55
+ ...config,
56
+ endpoints: [
57
+ ...(config.endpoints ?? []),
58
+ // Payload prefixes /api, so the full path is /api/mcp.
59
+ { handler: mcpEndpoint, method: 'post', path: '/mcp' },
60
+ ],
88
61
  }
89
-
90
- /**
91
- * This is the primary MCP Server Endpoint.
92
- * Payload will automatically add the /api prefix to the path, so the full path is `/api/mcp`
93
- * NOTE: This is only transport method until we add full support for SSE which will be another endpoint at `/api/sse`
94
- */
95
- config.endpoints.push({
96
- handler: initializeMCPHandler(pluginOptions),
97
- method: 'post',
98
- path: '/mcp',
99
- })
100
-
101
- /**
102
- * The GET response is always: {"jsonrpc":"2.0","error":{"code":-32000,"message":"Method not allowed."},"id":null} -- even with an API key
103
- * This is expected behavior and MCP clients should always use the POST endpoint.
104
- */
105
- config.endpoints.push({
106
- handler: initializeMCPHandler(pluginOptions),
107
- method: 'get',
108
- path: '/mcp',
109
- })
110
-
111
- return config
112
62
  },
113
63
  })
@@ -0,0 +1,229 @@
1
+ import { McpServer, type ServerContext } from '@modelcontextprotocol/server'
2
+ import { APIError, entityToStandaloneJSONSchema, type PayloadRequest } from 'payload'
3
+
4
+ import type {
5
+ AuthorizedMCP,
6
+ JsonSchemaType,
7
+ MCPResponseOverride,
8
+ MCPToolResponse,
9
+ SanitizedMCPPluginConfig,
10
+ } from '../types.js'
11
+
12
+ import { toCamelCase } from '../utils/camelCase.js'
13
+ import { getLogger } from '../utils/getLogger.js'
14
+ import {
15
+ getCollectionVirtualFieldNames,
16
+ getGlobalVirtualFieldNames,
17
+ } from '../utils/getVirtualFieldNames.js'
18
+ import { removeVirtualFieldsFromSchema } from '../utils/schemaConversion/removeVirtualFieldsFromSchema.js'
19
+ import { toStandardSchema } from '../utils/toStandardSchema.js'
20
+
21
+ /** `findPosts`, `updateSiteSettings` — auto-prefixed wire name for collection/global tools. */
22
+ const wireName = (key: string, slug: string): string => {
23
+ const camel = toCamelCase(slug)
24
+ return `${key}${camel.charAt(0).toUpperCase()}${camel.slice(1)}`
25
+ }
26
+
27
+ /**
28
+ * Transport-agnostic core: registers every authorized MCP item onto a fresh
29
+ * `McpServer` and returns it. The caller is responsible for picking a transport
30
+ * (`WebStandardStreamableHTTPServerTransport`, `StdioServerTransport`, …) and
31
+ * calling `server.connect(transport)`.
32
+ *
33
+ * `req` is the request context handlers see. For HTTP it's the live
34
+ * `PayloadRequest` derived from the incoming HTTP request; for stdio it's a
35
+ * synthesized one built via `createLocalReq`.
36
+ */
37
+ export const buildMcpServer = ({
38
+ authorizedMCP,
39
+ pluginConfig,
40
+ req,
41
+ }: {
42
+ authorizedMCP: AuthorizedMCP
43
+ pluginConfig: SanitizedMCPPluginConfig
44
+ req: PayloadRequest
45
+ }): McpServer => {
46
+ const serverOptions = pluginConfig.mcp?.serverOptions || {}
47
+ const server = new McpServer(
48
+ { name: 'Payload MCP Server', version: '1.0.0', ...serverOptions.serverInfo },
49
+ serverOptions.options,
50
+ )
51
+
52
+ const logger = getLogger({ payload: req.payload })
53
+
54
+ /**
55
+ * Wrap a tool handler's response with the tool's `overrideResponse`, then
56
+ * strip the internal `doc` field so it doesn't leak onto the wire.
57
+ */
58
+ const finalizeToolResponse = (
59
+ response: MCPToolResponse,
60
+ overrideResponse?: MCPResponseOverride,
61
+ ): MCPToolResponse => {
62
+ const overridden = overrideResponse?.(response, response.doc ?? {}, req) ?? response
63
+ const { doc: _doc, ...rest } = overridden
64
+ return rest
65
+ }
66
+
67
+ try {
68
+ for (const item of authorizedMCP.items) {
69
+ switch (item.type) {
70
+ case 'collectionTool': {
71
+ const tool = item.tool
72
+ const name = wireName(item.key, item.collectionSlug)
73
+ let inputSchema = tool.input
74
+ if (typeof inputSchema === 'function') {
75
+ const collection = req.payload.collections[item.collectionSlug]?.config
76
+ if (!collection) {
77
+ throw new APIError(
78
+ `Collection schema not found for slug: ${item.collectionSlug}`,
79
+ 500,
80
+ )
81
+ }
82
+ const collectionSchema = removeVirtualFieldsFromSchema(
83
+ entityToStandaloneJSONSchema({
84
+ config: req.payload.config,
85
+ defaultIDType: req.payload.db.defaultIDType,
86
+ entity: collection,
87
+ i18n: req.i18n,
88
+ }) as unknown as JsonSchemaType,
89
+ getCollectionVirtualFieldNames(req.payload.config, item.collectionSlug),
90
+ )
91
+ inputSchema = inputSchema({ collectionSchema })
92
+ }
93
+ server.registerTool(
94
+ name,
95
+ {
96
+ description: tool.description,
97
+ inputSchema: inputSchema ? toStandardSchema(inputSchema) : undefined,
98
+ },
99
+ async (input: unknown, ctx: ServerContext) =>
100
+ finalizeToolResponse(
101
+ await tool.handler({
102
+ authorizedMCP,
103
+ collectionSlug: item.collectionSlug,
104
+ input: (input ?? {}) as Record<string, unknown>,
105
+ req,
106
+ serverContext: ctx,
107
+ }),
108
+ tool.overrideResponse,
109
+ ),
110
+ )
111
+ logger.info(`✅ Tool: ${name} Registered.`)
112
+ break
113
+ }
114
+ case 'globalTool': {
115
+ const tool = item.tool
116
+ const name = wireName(item.key, item.globalSlug)
117
+ let inputSchema = tool.input
118
+ if (typeof inputSchema === 'function') {
119
+ const globalEntity = req.payload.config.globals.find(
120
+ (globalConfig) => globalConfig.slug === item.globalSlug,
121
+ )
122
+ if (!globalEntity) {
123
+ throw new APIError(`Global schema not found for slug: ${item.globalSlug}`, 500)
124
+ }
125
+ const globalSchema = removeVirtualFieldsFromSchema(
126
+ entityToStandaloneJSONSchema({
127
+ config: req.payload.config,
128
+ defaultIDType: req.payload.db.defaultIDType,
129
+ entity: globalEntity,
130
+ i18n: req.i18n,
131
+ }) as unknown as JsonSchemaType,
132
+ getGlobalVirtualFieldNames(req.payload.config, item.globalSlug),
133
+ )
134
+
135
+ inputSchema = inputSchema({ globalSchema })
136
+ }
137
+ server.registerTool(
138
+ name,
139
+ {
140
+ description: tool.description,
141
+ inputSchema: inputSchema ? toStandardSchema(inputSchema) : undefined,
142
+ },
143
+ async (input: unknown, ctx: ServerContext) =>
144
+ finalizeToolResponse(
145
+ await tool.handler({
146
+ authorizedMCP,
147
+ globalSlug: item.globalSlug,
148
+ input: (input ?? {}) as Record<string, unknown>,
149
+ req,
150
+ serverContext: ctx,
151
+ }),
152
+ tool.overrideResponse,
153
+ ),
154
+ )
155
+ logger.info(`✅ Tool: ${name} Registered.`)
156
+ break
157
+ }
158
+ case 'prompt': {
159
+ const prompt = item.prompt
160
+ server.registerPrompt(
161
+ item.key,
162
+ {
163
+ argsSchema: prompt.argsSchema ? toStandardSchema(prompt.argsSchema) : undefined,
164
+ description: prompt.description,
165
+ title: prompt.title,
166
+ },
167
+ async (input: unknown, ctx: ServerContext) =>
168
+ prompt.handler({
169
+ input: (input ?? {}) as Record<string, unknown>,
170
+ req,
171
+ serverContext: ctx,
172
+ }),
173
+ )
174
+ logger.info(`✅ Prompt: ${prompt.title} Registered.`)
175
+ break
176
+ }
177
+ case 'resource': {
178
+ const resource = item.resource
179
+ server.registerResource(
180
+ item.key,
181
+ // @ts-expect-error - Overload type ambiguity (string OR ResourceTemplate is valid)
182
+ resource.uri,
183
+ {
184
+ description: resource.description,
185
+ mimeType: resource.mimeType,
186
+ title: resource.title,
187
+ },
188
+ // Static URIs call (uri, ctx); ResourceTemplates call (uri, params, ctx).
189
+ // The rest-params shape lets us collect either signature uniformly.
190
+ async (...sdkArgs: unknown[]) => {
191
+ const ctx = sdkArgs[sdkArgs.length - 1] as ServerContext
192
+ const uri = sdkArgs[0] as URL
193
+ const params = (sdkArgs.length > 2 ? sdkArgs[1] : {}) as Record<string, string>
194
+ return resource.handler({ params, req, serverContext: ctx, uri })
195
+ },
196
+ )
197
+ logger.info(`✅ Resource: ${resource.title} Registered.`)
198
+ break
199
+ }
200
+ case 'tool': {
201
+ const tool = item.tool
202
+ server.registerTool(
203
+ item.key,
204
+ {
205
+ description: tool.description,
206
+ inputSchema: tool.input ? toStandardSchema(tool.input) : undefined,
207
+ },
208
+ async (input: unknown, ctx: ServerContext) =>
209
+ finalizeToolResponse(
210
+ await tool.handler({
211
+ authorizedMCP,
212
+ input: (input ?? {}) as Record<string, unknown>,
213
+ req,
214
+ serverContext: ctx,
215
+ }),
216
+ tool.overrideResponse,
217
+ ),
218
+ )
219
+ logger.info(`✅ Tool: ${item.key} Registered.`)
220
+ break
221
+ }
222
+ }
223
+ }
224
+ } catch (error) {
225
+ throw new APIError(`Error initializing MCP handler: ${String(error)}`, 500)
226
+ }
227
+
228
+ return server
229
+ }
@@ -0,0 +1,233 @@
1
+ import { z } from 'zod'
2
+
3
+ import type { MCPToolResponse } from '../../../types.js'
4
+
5
+ import { defineCollectionTool } from '../../../defineTool.js'
6
+ import { getLogger } from '../../../utils/getLogger.js'
7
+
8
+ /**
9
+ * Auth tools surfaced under `collections.<auth-collection>.tools`. Opt-in: they
10
+ * default off (an LLM with `login` access can probe passwords; not something
11
+ * to expose by default). Enable in plugin config via `tools: { login: true }`
12
+ * (or `{ description: '...' }`).
13
+ *
14
+ * `auth` (check current token) doesn't actually depend on the collection at
15
+ * runtime — `payload.auth({ headers })` is global — but it's grouped under the
16
+ * users collection so all auth-shaped tools live in one place.
17
+ */
18
+
19
+ const emailSchema = z.string().email().describe('The user email address')
20
+
21
+ const wrapError =
22
+ (name: string) =>
23
+ ({ collectionSlug, message }: { collectionSlug: string; message: string }): MCPToolResponse => {
24
+ return {
25
+ content: [
26
+ {
27
+ type: 'text',
28
+ text: `❌ **Error in ${name}** on ${collectionSlug}: ${message}`,
29
+ },
30
+ ],
31
+ }
32
+ }
33
+
34
+ export const authCollectionTool = defineCollectionTool({
35
+ description: 'Checks authentication status for the current user.',
36
+ input: z.object({
37
+ headers: z
38
+ .string()
39
+ .describe(
40
+ 'Optional JSON string containing custom headers to send with the authentication request',
41
+ )
42
+ .optional(),
43
+ }),
44
+ }).handler(async ({ collectionSlug, input, req }) => {
45
+ const logger = getLogger({ payload: req.payload })
46
+ try {
47
+ let authHeaders = new Headers()
48
+ if (input.headers) {
49
+ try {
50
+ authHeaders = new Headers(JSON.parse(input.headers) as Record<string, string>)
51
+ } catch {
52
+ logger.warn(`Invalid headers JSON for auth: ${input.headers}, using empty headers`)
53
+ }
54
+ }
55
+ const result = await req.payload.auth({ headers: authHeaders })
56
+ return {
57
+ content: [
58
+ {
59
+ type: 'text',
60
+ text: `# Authentication Status\n\n\`\`\`json\n${JSON.stringify(result)}\n\`\`\``,
61
+ },
62
+ ],
63
+ doc: result as unknown as Record<string, unknown>,
64
+ }
65
+ } catch (error) {
66
+ const errorMessage = error instanceof Error ? error.message : 'Unknown error'
67
+ logger.error(`Error in auth tool on ${collectionSlug}: ${errorMessage}`)
68
+ return wrapError('auth')({ collectionSlug, message: errorMessage })
69
+ }
70
+ })
71
+
72
+ export const forgotPasswordCollectionTool = defineCollectionTool({
73
+ description: 'Sends a password reset email to a user.',
74
+ input: z.object({
75
+ disableEmail: z
76
+ .boolean()
77
+ .describe('Whether to disable sending the email (for testing)')
78
+ .optional()
79
+ .default(false),
80
+ email: emailSchema,
81
+ }),
82
+ }).handler(async ({ collectionSlug, input, req }) => {
83
+ const logger = getLogger({ payload: req.payload })
84
+ try {
85
+ const result = await req.payload.forgotPassword({
86
+ collection: collectionSlug,
87
+ data: { email: input.email },
88
+ disableEmail: input.disableEmail,
89
+ })
90
+ return {
91
+ content: [
92
+ {
93
+ type: 'text',
94
+ text: `# Forgot Password Email Sent\n\n**Collection:** ${collectionSlug}\n**Email:** ${input.email}\n\n\`\`\`json\n${JSON.stringify(result)}\n\`\`\``,
95
+ },
96
+ ],
97
+ doc: { result } as Record<string, unknown>,
98
+ }
99
+ } catch (error) {
100
+ const errorMessage = error instanceof Error ? error.message : 'Unknown error'
101
+ logger.error(`Error in forgotPassword tool on ${collectionSlug}: ${errorMessage}`)
102
+ return wrapError('forgotPassword')({ collectionSlug, message: errorMessage })
103
+ }
104
+ })
105
+
106
+ export const loginCollectionTool = defineCollectionTool({
107
+ description: 'Authenticates a user with email and password.',
108
+ input: z.object({
109
+ depth: z
110
+ .number()
111
+ .int()
112
+ .min(0)
113
+ .max(10)
114
+ .describe('Depth of population for relationships')
115
+ .optional()
116
+ .default(0),
117
+ email: emailSchema,
118
+ password: z.string().describe('The user password'),
119
+ showHiddenFields: z
120
+ .boolean()
121
+ .describe('Whether to show hidden fields in the response')
122
+ .optional()
123
+ .default(false),
124
+ }),
125
+ }).handler(async ({ collectionSlug, input, req }) => {
126
+ const logger = getLogger({ payload: req.payload })
127
+ try {
128
+ const result = await req.payload.login({
129
+ collection: collectionSlug,
130
+ data: { email: input.email, password: input.password },
131
+ depth: input.depth,
132
+ showHiddenFields: input.showHiddenFields,
133
+ })
134
+ return {
135
+ content: [
136
+ {
137
+ type: 'text',
138
+ text: `# Login Successful\n\n**User:** ${input.email}\n**Collection:** ${collectionSlug}\n\n\`\`\`json\n${JSON.stringify(result)}\n\`\`\``,
139
+ },
140
+ ],
141
+ doc: result as unknown as Record<string, unknown>,
142
+ }
143
+ } catch (error) {
144
+ const errorMessage = error instanceof Error ? error.message : 'Unknown error'
145
+ logger.error(`Error in login tool on ${collectionSlug}: ${errorMessage}`)
146
+ return wrapError('login')({ collectionSlug, message: errorMessage })
147
+ }
148
+ })
149
+
150
+ export const resetPasswordCollectionTool = defineCollectionTool({
151
+ description: 'Resets a user password with a reset token.',
152
+ input: z.object({
153
+ password: z.string().describe('The new password for the user'),
154
+ token: z.string().describe('The password reset token sent to the user email'),
155
+ }),
156
+ }).handler(async ({ collectionSlug, input, req }) => {
157
+ const logger = getLogger({ payload: req.payload })
158
+ try {
159
+ const result = await req.payload.resetPassword({
160
+ collection: collectionSlug,
161
+ data: { password: input.password, token: input.token },
162
+ overrideAccess: true,
163
+ })
164
+ return {
165
+ content: [
166
+ {
167
+ type: 'text',
168
+ text: `# Password Reset Successful\n\n**Collection:** ${collectionSlug}\n\n\`\`\`json\n${JSON.stringify(result)}\n\`\`\``,
169
+ },
170
+ ],
171
+ doc: result as unknown as Record<string, unknown>,
172
+ }
173
+ } catch (error) {
174
+ const errorMessage = error instanceof Error ? error.message : 'Unknown error'
175
+ logger.error(`Error in resetPassword tool on ${collectionSlug}: ${errorMessage}`)
176
+ return wrapError('resetPassword')({ collectionSlug, message: errorMessage })
177
+ }
178
+ })
179
+
180
+ export const unlockCollectionTool = defineCollectionTool({
181
+ description: 'Unlocks a user account that has been locked due to failed login attempts.',
182
+ input: z.object({ email: emailSchema }),
183
+ }).handler(async ({ collectionSlug, input, req }) => {
184
+ const logger = getLogger({ payload: req.payload })
185
+ try {
186
+ const result = await req.payload.unlock({
187
+ collection: collectionSlug,
188
+ data: { email: input.email },
189
+ overrideAccess: true,
190
+ })
191
+ return {
192
+ content: [
193
+ {
194
+ type: 'text',
195
+ text: `# Account Unlocked\n\n**Collection:** ${collectionSlug}\n**Email:** ${input.email}\n**Result:** ${result ? 'Success' : 'Failed'}`,
196
+ },
197
+ ],
198
+ doc: { result } as Record<string, unknown>,
199
+ }
200
+ } catch (error) {
201
+ const errorMessage = error instanceof Error ? error.message : 'Unknown error'
202
+ logger.error(`Error in unlock tool on ${collectionSlug}: ${errorMessage}`)
203
+ return wrapError('unlock')({ collectionSlug, message: errorMessage })
204
+ }
205
+ })
206
+
207
+ export const verifyCollectionTool = defineCollectionTool({
208
+ description: 'Verifies a user email with a verification token.',
209
+ input: z.object({
210
+ token: z.string().describe('The verification token sent to the user email'),
211
+ }),
212
+ }).handler(async ({ collectionSlug, input, req }) => {
213
+ const logger = getLogger({ payload: req.payload })
214
+ try {
215
+ const result = await req.payload.verifyEmail({
216
+ collection: collectionSlug,
217
+ token: input.token,
218
+ })
219
+ return {
220
+ content: [
221
+ {
222
+ type: 'text',
223
+ text: `# Email Verification Successful\n\n**Collection:** ${collectionSlug}\n**Result:** ${result ? 'Success' : 'Failed'}`,
224
+ },
225
+ ],
226
+ doc: { result } as Record<string, unknown>,
227
+ }
228
+ } catch (error) {
229
+ const errorMessage = error instanceof Error ? error.message : 'Unknown error'
230
+ logger.error(`Error in verify tool on ${collectionSlug}: ${errorMessage}`)
231
+ return wrapError('verify')({ collectionSlug, message: errorMessage })
232
+ }
233
+ })