mcp4openapi 0.2.7 → 0.3.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 (317) hide show
  1. package/README.md +147 -63
  2. package/dist/scripts/validate-profile.js +3 -3
  3. package/dist/scripts/validate-profile.js.map +1 -1
  4. package/dist/src/{oauth-provider.d.ts → auth/oauth-provider.d.ts} +7 -2
  5. package/dist/src/auth/oauth-provider.d.ts.map +1 -0
  6. package/dist/src/{oauth-provider.js → auth/oauth-provider.js} +30 -2
  7. package/dist/src/auth/oauth-provider.js.map +1 -0
  8. package/dist/src/core/cli-config.d.ts +9 -0
  9. package/dist/src/core/cli-config.d.ts.map +1 -0
  10. package/dist/src/core/cli-config.js +124 -0
  11. package/dist/src/core/cli-config.js.map +1 -0
  12. package/dist/src/{constants.d.ts → core/constants.d.ts} +1 -0
  13. package/dist/src/core/constants.d.ts.map +1 -0
  14. package/dist/src/{constants.js → core/constants.js} +1 -0
  15. package/dist/src/core/constants.js.map +1 -0
  16. package/dist/src/{errors.d.ts → core/errors.d.ts} +6 -0
  17. package/dist/src/core/errors.d.ts.map +1 -0
  18. package/dist/src/{errors.js → core/errors.js} +15 -6
  19. package/dist/src/core/errors.js.map +1 -0
  20. package/dist/src/core/filtering.d.ts +19 -0
  21. package/dist/src/core/filtering.d.ts.map +1 -0
  22. package/dist/src/core/filtering.js +292 -0
  23. package/dist/src/core/filtering.js.map +1 -0
  24. package/dist/src/core/index.d.ts +26 -0
  25. package/dist/src/core/index.d.ts.map +1 -0
  26. package/dist/src/core/index.js +275 -0
  27. package/dist/src/core/index.js.map +1 -0
  28. package/dist/src/core/lib.d.ts +8 -0
  29. package/dist/src/core/lib.d.ts.map +1 -0
  30. package/dist/src/core/lib.js +7 -0
  31. package/dist/src/core/lib.js.map +1 -0
  32. package/dist/src/{logger.d.ts → core/logger.d.ts} +6 -13
  33. package/dist/src/core/logger.d.ts.map +1 -0
  34. package/dist/src/core/logger.js +197 -0
  35. package/dist/src/core/logger.js.map +1 -0
  36. package/dist/src/{metrics.d.ts → core/metrics.d.ts} +11 -0
  37. package/dist/src/core/metrics.d.ts.map +1 -0
  38. package/dist/src/{metrics.js → core/metrics.js} +61 -0
  39. package/dist/src/core/metrics.js.map +1 -0
  40. package/dist/src/core/naming-warnings.d.ts.map +1 -0
  41. package/dist/src/{naming-warnings.js → core/naming-warnings.js} +6 -6
  42. package/dist/src/core/naming-warnings.js.map +1 -0
  43. package/dist/src/core/naming.d.ts.map +1 -0
  44. package/dist/src/core/naming.js.map +1 -0
  45. package/dist/src/generated-schemas.d.ts +281 -79
  46. package/dist/src/generated-schemas.d.ts.map +1 -1
  47. package/dist/src/generated-schemas.js +17 -3
  48. package/dist/src/generated-schemas.js.map +1 -1
  49. package/dist/src/index.d.ts +1 -6
  50. package/dist/src/index.d.ts.map +1 -1
  51. package/dist/src/index.js +1 -156
  52. package/dist/src/index.js.map +1 -1
  53. package/dist/src/lib.d.ts +1 -7
  54. package/dist/src/lib.d.ts.map +1 -1
  55. package/dist/src/lib.js +1 -6
  56. package/dist/src/lib.js.map +1 -1
  57. package/dist/src/mcp/mcp-server-manager.d.ts +20 -0
  58. package/dist/src/mcp/mcp-server-manager.d.ts.map +1 -0
  59. package/dist/src/mcp/mcp-server-manager.js +38 -0
  60. package/dist/src/mcp/mcp-server-manager.js.map +1 -0
  61. package/dist/src/{mcp-server.d.ts → mcp/mcp-server.d.ts} +43 -3
  62. package/dist/src/mcp/mcp-server.d.ts.map +1 -0
  63. package/dist/src/{mcp-server.js → mcp/mcp-server.js} +639 -123
  64. package/dist/src/mcp/mcp-server.js.map +1 -0
  65. package/dist/src/{openapi-parser.d.ts → openapi/openapi-parser.d.ts} +1 -1
  66. package/dist/src/openapi/openapi-parser.d.ts.map +1 -0
  67. package/dist/src/{openapi-parser.js → openapi/openapi-parser.js} +2 -2
  68. package/dist/src/openapi/openapi-parser.js.map +1 -0
  69. package/dist/src/{profile-loader.d.ts → profile/profile-loader.d.ts} +3 -2
  70. package/dist/src/profile/profile-loader.d.ts.map +1 -0
  71. package/dist/src/{profile-loader.js → profile/profile-loader.js} +17 -6
  72. package/dist/src/profile/profile-loader.js.map +1 -0
  73. package/dist/src/profile/profile-registry.d.ts +18 -0
  74. package/dist/src/profile/profile-registry.d.ts.map +1 -0
  75. package/dist/src/profile/profile-registry.js +26 -0
  76. package/dist/src/profile/profile-registry.js.map +1 -0
  77. package/dist/src/profile/profile-resolver.d.ts +25 -0
  78. package/dist/src/profile/profile-resolver.d.ts.map +1 -0
  79. package/dist/src/profile/profile-resolver.js +204 -0
  80. package/dist/src/profile/profile-resolver.js.map +1 -0
  81. package/dist/src/profile/startup-profile.d.ts +17 -0
  82. package/dist/src/profile/startup-profile.d.ts.map +1 -0
  83. package/dist/src/profile/startup-profile.js +30 -0
  84. package/dist/src/profile/startup-profile.js.map +1 -0
  85. package/dist/src/profile/startup-validation.d.ts +11 -0
  86. package/dist/src/profile/startup-validation.d.ts.map +1 -0
  87. package/dist/src/profile/startup-validation.js +21 -0
  88. package/dist/src/profile/startup-validation.js.map +1 -0
  89. package/dist/src/testing/dynamic-mock-server.d.ts +24 -0
  90. package/dist/src/testing/dynamic-mock-server.d.ts.map +1 -0
  91. package/dist/src/testing/dynamic-mock-server.js +138 -0
  92. package/dist/src/testing/dynamic-mock-server.js.map +1 -0
  93. package/dist/src/testing/listen-support.d.ts +3 -0
  94. package/dist/src/testing/listen-support.d.ts.map +1 -0
  95. package/dist/src/testing/listen-support.js +50 -0
  96. package/dist/src/testing/listen-support.js.map +1 -0
  97. package/dist/src/testing/request-assertions.d.ts +5 -0
  98. package/dist/src/testing/request-assertions.d.ts.map +1 -0
  99. package/dist/src/testing/request-assertions.js +165 -0
  100. package/dist/src/testing/request-assertions.js.map +1 -0
  101. package/dist/src/testing/template-utils.d.ts +10 -0
  102. package/dist/src/testing/template-utils.d.ts.map +1 -0
  103. package/dist/src/testing/template-utils.js +72 -0
  104. package/dist/src/testing/template-utils.js.map +1 -0
  105. package/dist/src/testing/test-http-utils.d.ts +1 -1
  106. package/dist/src/testing/test-http-utils.d.ts.map +1 -1
  107. package/dist/src/testing/test-http-utils.js +1 -1
  108. package/dist/src/testing/test-http-utils.js.map +1 -1
  109. package/dist/src/testing/test-loader.d.ts +6 -0
  110. package/dist/src/testing/test-loader.d.ts.map +1 -0
  111. package/dist/src/testing/test-loader.js +212 -0
  112. package/dist/src/testing/test-loader.js.map +1 -0
  113. package/dist/src/testing/test-schema.d.ts +1270 -0
  114. package/dist/src/testing/test-schema.d.ts.map +1 -0
  115. package/dist/src/testing/test-schema.js +76 -0
  116. package/dist/src/testing/test-schema.js.map +1 -0
  117. package/dist/src/tool-filter/compat.d.ts +49 -0
  118. package/dist/src/tool-filter/compat.d.ts.map +1 -0
  119. package/dist/src/tool-filter/compat.js +72 -0
  120. package/dist/src/tool-filter/compat.js.map +1 -0
  121. package/dist/src/tool-filter/config/env-config-parser.d.ts +38 -0
  122. package/dist/src/tool-filter/config/env-config-parser.d.ts.map +1 -0
  123. package/dist/src/tool-filter/config/env-config-parser.js +103 -0
  124. package/dist/src/tool-filter/config/env-config-parser.js.map +1 -0
  125. package/dist/src/tool-filter/config/header-config-parser.d.ts +37 -0
  126. package/dist/src/tool-filter/config/header-config-parser.d.ts.map +1 -0
  127. package/dist/src/tool-filter/config/header-config-parser.js +118 -0
  128. package/dist/src/tool-filter/config/header-config-parser.js.map +1 -0
  129. package/dist/src/tool-filter/errors.d.ts +18 -0
  130. package/dist/src/tool-filter/errors.d.ts.map +1 -0
  131. package/dist/src/tool-filter/errors.js +21 -0
  132. package/dist/src/tool-filter/errors.js.map +1 -0
  133. package/dist/src/tool-filter/filter/filter-engine.d.ts +45 -0
  134. package/dist/src/tool-filter/filter/filter-engine.d.ts.map +1 -0
  135. package/dist/src/tool-filter/filter/filter-engine.js +94 -0
  136. package/dist/src/tool-filter/filter/filter-engine.js.map +1 -0
  137. package/dist/src/tool-filter/filter/filter-rules.d.ts +44 -0
  138. package/dist/src/tool-filter/filter/filter-rules.d.ts.map +1 -0
  139. package/dist/src/tool-filter/filter/filter-rules.js +72 -0
  140. package/dist/src/tool-filter/filter/filter-rules.js.map +1 -0
  141. package/dist/src/tool-filter/filter/global-tool-filter.d.ts +40 -0
  142. package/dist/src/tool-filter/filter/global-tool-filter.d.ts.map +1 -0
  143. package/dist/src/tool-filter/filter/global-tool-filter.js +92 -0
  144. package/dist/src/tool-filter/filter/global-tool-filter.js.map +1 -0
  145. package/dist/src/tool-filter/filter/session-tool-filter.d.ts +29 -0
  146. package/dist/src/tool-filter/filter/session-tool-filter.d.ts.map +1 -0
  147. package/dist/src/tool-filter/filter/session-tool-filter.js +69 -0
  148. package/dist/src/tool-filter/filter/session-tool-filter.js.map +1 -0
  149. package/dist/src/tool-filter/index.d.ts +25 -0
  150. package/dist/src/tool-filter/index.d.ts.map +1 -0
  151. package/dist/src/tool-filter/index.js +30 -0
  152. package/dist/src/tool-filter/index.js.map +1 -0
  153. package/dist/src/tool-filter/integration/tool-filter-service.d.ts +44 -0
  154. package/dist/src/tool-filter/integration/tool-filter-service.d.ts.map +1 -0
  155. package/dist/src/tool-filter/integration/tool-filter-service.js +68 -0
  156. package/dist/src/tool-filter/integration/tool-filter-service.js.map +1 -0
  157. package/dist/src/tool-filter/operation/operation-classifier.d.ts +20 -0
  158. package/dist/src/tool-filter/operation/operation-classifier.d.ts.map +1 -0
  159. package/dist/src/tool-filter/operation/operation-classifier.js +26 -0
  160. package/dist/src/tool-filter/operation/operation-classifier.js.map +1 -0
  161. package/dist/src/tool-filter/operation/operation-detector.d.ts +30 -0
  162. package/dist/src/tool-filter/operation/operation-detector.d.ts.map +1 -0
  163. package/dist/src/tool-filter/operation/operation-detector.js +96 -0
  164. package/dist/src/tool-filter/operation/operation-detector.js.map +1 -0
  165. package/dist/src/tool-filter/operation/operation-resolver.d.ts +22 -0
  166. package/dist/src/tool-filter/operation/operation-resolver.d.ts.map +1 -0
  167. package/dist/src/tool-filter/operation/operation-resolver.js +32 -0
  168. package/dist/src/tool-filter/operation/operation-resolver.js.map +1 -0
  169. package/dist/src/tool-filter/regex/regex-compiler.d.ts +22 -0
  170. package/dist/src/tool-filter/regex/regex-compiler.d.ts.map +1 -0
  171. package/dist/src/tool-filter/regex/regex-compiler.js +56 -0
  172. package/dist/src/tool-filter/regex/regex-compiler.js.map +1 -0
  173. package/dist/src/tool-filter/regex/regex-validator.d.ts +24 -0
  174. package/dist/src/tool-filter/regex/regex-validator.d.ts.map +1 -0
  175. package/dist/src/tool-filter/regex/regex-validator.js +58 -0
  176. package/dist/src/tool-filter/regex/regex-validator.js.map +1 -0
  177. package/dist/src/tool-filter/types.d.ts +92 -0
  178. package/dist/src/tool-filter/types.d.ts.map +1 -0
  179. package/dist/src/tool-filter/types.js +5 -0
  180. package/dist/src/tool-filter/types.js.map +1 -0
  181. package/dist/src/tool-filter/utils.d.ts +11 -0
  182. package/dist/src/tool-filter/utils.d.ts.map +1 -0
  183. package/dist/src/tool-filter/utils.js +13 -0
  184. package/dist/src/tool-filter/utils.js.map +1 -0
  185. package/dist/src/{composite-executor.d.ts → tooling/composite-executor.d.ts} +3 -3
  186. package/dist/src/tooling/composite-executor.d.ts.map +1 -0
  187. package/dist/src/{composite-executor.js → tooling/composite-executor.js} +1 -1
  188. package/dist/src/tooling/composite-executor.js.map +1 -0
  189. package/dist/src/{dag-executor.d.ts → tooling/dag-executor.d.ts} +1 -1
  190. package/dist/src/tooling/dag-executor.d.ts.map +1 -0
  191. package/dist/src/tooling/dag-executor.js.map +1 -0
  192. package/dist/src/{proxy-executor.d.ts → tooling/proxy-executor.d.ts} +19 -4
  193. package/dist/src/tooling/proxy-executor.d.ts.map +1 -0
  194. package/dist/src/tooling/proxy-executor.js +497 -0
  195. package/dist/src/tooling/proxy-executor.js.map +1 -0
  196. package/dist/src/{tool-generator.d.ts → tooling/tool-generator.d.ts} +4 -3
  197. package/dist/src/tooling/tool-generator.d.ts.map +1 -0
  198. package/dist/src/{tool-generator.js → tooling/tool-generator.js} +23 -7
  199. package/dist/src/tooling/tool-generator.js.map +1 -0
  200. package/dist/src/{http-client-factory.d.ts → transport/http-client-factory.d.ts} +4 -1
  201. package/dist/src/transport/http-client-factory.d.ts.map +1 -0
  202. package/dist/src/{http-client-factory.js → transport/http-client-factory.js} +13 -3
  203. package/dist/src/transport/http-client-factory.js.map +1 -0
  204. package/dist/src/transport/http-transport-config.d.ts +6 -0
  205. package/dist/src/transport/http-transport-config.d.ts.map +1 -0
  206. package/dist/src/transport/http-transport-config.js +62 -0
  207. package/dist/src/transport/http-transport-config.js.map +1 -0
  208. package/dist/src/{http-transport.d.ts → transport/http-transport.d.ts} +72 -14
  209. package/dist/src/transport/http-transport.d.ts.map +1 -0
  210. package/dist/src/transport/http-transport.js +2522 -0
  211. package/dist/src/transport/http-transport.js.map +1 -0
  212. package/dist/src/{interceptors.d.ts → transport/interceptors.d.ts} +6 -2
  213. package/dist/src/transport/interceptors.d.ts.map +1 -0
  214. package/dist/src/{interceptors.js → transport/interceptors.js} +77 -46
  215. package/dist/src/transport/interceptors.js.map +1 -0
  216. package/dist/src/types/http-transport.d.ts +25 -0
  217. package/dist/src/types/http-transport.d.ts.map +1 -1
  218. package/dist/src/types/profile.d.ts +31 -1
  219. package/dist/src/types/profile.d.ts.map +1 -1
  220. package/dist/src/validation/argument-normalizer.d.ts +6 -0
  221. package/dist/src/validation/argument-normalizer.d.ts.map +1 -0
  222. package/dist/src/validation/argument-normalizer.js +70 -0
  223. package/dist/src/validation/argument-normalizer.js.map +1 -0
  224. package/dist/src/validation/jsonrpc-validator.d.ts.map +1 -0
  225. package/dist/src/validation/jsonrpc-validator.js.map +1 -0
  226. package/dist/src/{schema-validator.d.ts → validation/schema-validator.d.ts} +2 -2
  227. package/dist/src/validation/schema-validator.d.ts.map +1 -0
  228. package/dist/src/validation/schema-validator.js.map +1 -0
  229. package/dist/src/validation/validation-utils.d.ts.map +1 -0
  230. package/dist/src/validation/validation-utils.js.map +1 -0
  231. package/package.json +9 -3
  232. package/profile-schema.json +75 -3
  233. package/profiles/gitlab/developer-profile-oauth.json +1520 -0
  234. package/profiles/gitlab/developer-profile-oauth.test.json +3432 -0
  235. package/profiles/gitlab/openapi.yaml +6891 -0
  236. package/profiles/n8n/openapi.yaml +2441 -0
  237. package/profiles/n8n/profile-optimized.json +965 -0
  238. package/profiles/n8n/profile-optimized.test.json +1078 -0
  239. package/profiles/n8n/profile.json +1033 -0
  240. package/profiles/n8n/profile.test.json +983 -0
  241. package/profiles/n8n-nodes/openapi.yaml +24 -0
  242. package/profiles/n8n-nodes/profile-nodes.json +44 -0
  243. package/profiles/n8n-nodes/profile-nodes.test.json +91 -0
  244. package/profiles/semgrep/openapi.yaml +4706 -0
  245. package/profiles/semgrep/profile.json +692 -0
  246. package/profiles/semgrep/profile.test.json +471 -0
  247. package/profiles/youtrack/openapi.json +16976 -0
  248. package/profiles/youtrack/profile.json +608 -0
  249. package/profiles/youtrack/profile.test.json +1926 -0
  250. package/dist/src/composite-executor.d.ts.map +0 -1
  251. package/dist/src/composite-executor.js.map +0 -1
  252. package/dist/src/constants.d.ts.map +0 -1
  253. package/dist/src/constants.js.map +0 -1
  254. package/dist/src/dag-executor.d.ts.map +0 -1
  255. package/dist/src/dag-executor.js.map +0 -1
  256. package/dist/src/errors.d.ts.map +0 -1
  257. package/dist/src/errors.js.map +0 -1
  258. package/dist/src/http-client-factory.d.ts.map +0 -1
  259. package/dist/src/http-client-factory.js.map +0 -1
  260. package/dist/src/http-transport.d.ts.map +0 -1
  261. package/dist/src/http-transport.js +0 -1826
  262. package/dist/src/http-transport.js.map +0 -1
  263. package/dist/src/interceptors.d.ts.map +0 -1
  264. package/dist/src/interceptors.js.map +0 -1
  265. package/dist/src/jsonrpc-validator.d.ts.map +0 -1
  266. package/dist/src/jsonrpc-validator.js.map +0 -1
  267. package/dist/src/logger.d.ts.map +0 -1
  268. package/dist/src/logger.js +0 -177
  269. package/dist/src/logger.js.map +0 -1
  270. package/dist/src/mcp-server.d.ts.map +0 -1
  271. package/dist/src/mcp-server.js.map +0 -1
  272. package/dist/src/metrics.d.ts.map +0 -1
  273. package/dist/src/metrics.js.map +0 -1
  274. package/dist/src/naming-warnings.d.ts.map +0 -1
  275. package/dist/src/naming-warnings.js.map +0 -1
  276. package/dist/src/naming.d.ts.map +0 -1
  277. package/dist/src/naming.js.map +0 -1
  278. package/dist/src/oauth-provider.d.ts.map +0 -1
  279. package/dist/src/oauth-provider.js.map +0 -1
  280. package/dist/src/openapi-parser.d.ts.map +0 -1
  281. package/dist/src/openapi-parser.js.map +0 -1
  282. package/dist/src/profile-loader.d.ts.map +0 -1
  283. package/dist/src/profile-loader.js.map +0 -1
  284. package/dist/src/proxy-executor.d.ts.map +0 -1
  285. package/dist/src/proxy-executor.js +0 -240
  286. package/dist/src/proxy-executor.js.map +0 -1
  287. package/dist/src/schema-validator.d.ts.map +0 -1
  288. package/dist/src/schema-validator.js.map +0 -1
  289. package/dist/src/testing/fixtures.d.ts +0 -684
  290. package/dist/src/testing/fixtures.d.ts.map +0 -1
  291. package/dist/src/testing/fixtures.js +0 -528
  292. package/dist/src/testing/fixtures.js.map +0 -1
  293. package/dist/src/testing/mock-gitlab-server.d.ts +0 -43
  294. package/dist/src/testing/mock-gitlab-server.d.ts.map +0 -1
  295. package/dist/src/testing/mock-gitlab-server.js +0 -1026
  296. package/dist/src/testing/mock-gitlab-server.js.map +0 -1
  297. package/dist/src/testing/mock-semgrep-server.d.ts +0 -32
  298. package/dist/src/testing/mock-semgrep-server.d.ts.map +0 -1
  299. package/dist/src/testing/mock-semgrep-server.js +0 -213
  300. package/dist/src/testing/mock-semgrep-server.js.map +0 -1
  301. package/dist/src/testing/mock-youtrack-server.d.ts +0 -11
  302. package/dist/src/testing/mock-youtrack-server.d.ts.map +0 -1
  303. package/dist/src/testing/mock-youtrack-server.js +0 -138
  304. package/dist/src/testing/mock-youtrack-server.js.map +0 -1
  305. package/dist/src/tool-generator.d.ts.map +0 -1
  306. package/dist/src/tool-generator.js.map +0 -1
  307. package/dist/src/validation-utils.d.ts.map +0 -1
  308. package/dist/src/validation-utils.js.map +0 -1
  309. /package/dist/src/{naming-warnings.d.ts → core/naming-warnings.d.ts} +0 -0
  310. /package/dist/src/{naming.d.ts → core/naming.d.ts} +0 -0
  311. /package/dist/src/{naming.js → core/naming.js} +0 -0
  312. /package/dist/src/{dag-executor.js → tooling/dag-executor.js} +0 -0
  313. /package/dist/src/{jsonrpc-validator.d.ts → validation/jsonrpc-validator.d.ts} +0 -0
  314. /package/dist/src/{jsonrpc-validator.js → validation/jsonrpc-validator.js} +0 -0
  315. /package/dist/src/{schema-validator.js → validation/schema-validator.js} +0 -0
  316. /package/dist/src/{validation-utils.d.ts → validation/validation-utils.d.ts} +0 -0
  317. /package/dist/src/{validation-utils.js → validation/validation-utils.js} +0 -0
@@ -0,0 +1,965 @@
1
+ {
2
+ "$schema": "../../profile-schema.json",
3
+ "profile_name": "n8n-optimized",
4
+ "profile_id": "n8n-optimized",
5
+ "profile_aliases": [
6
+ "n8n-optimized"
7
+ ],
8
+ "openapi_spec_path": "./openapi.yaml",
9
+ "description": "n8n Public API - minimal tools grouped by read/write operations",
10
+ "parameter_aliases": {
11
+ "id": [
12
+ "credential_id",
13
+ "execution_id",
14
+ "tag_id",
15
+ "user_id",
16
+ "variable_id",
17
+ "workflow_id"
18
+ ],
19
+ "projectId": [
20
+ "project_id"
21
+ ],
22
+ "userId": [
23
+ "user_id"
24
+ ],
25
+ "workflowId": [
26
+ "workflow_id"
27
+ ],
28
+ "versionId": [
29
+ "version_id"
30
+ ],
31
+ "credentialTypeName": [
32
+ "credential_type_name"
33
+ ],
34
+ "includeData": [
35
+ "include_data"
36
+ ],
37
+ "includeRole": [
38
+ "include_role"
39
+ ]
40
+ },
41
+ "tools": [
42
+ {
43
+ "name": "retrieve_n8n",
44
+ "description": "Read-only access to n8n resources (list/get).",
45
+ "metadata_params": [
46
+ "action"
47
+ ],
48
+ "operations": {
49
+ "get_credential_schema": "get_/credentials/schema/{credentialTypeName}",
50
+ "list_executions": "get_/executions",
51
+ "get_execution": "get_/executions/{id}",
52
+ "list_projects": "get_/projects",
53
+ "list_tags": "get_/tags",
54
+ "get_tag": "get_/tags/{id}",
55
+ "list_users": "get_/users",
56
+ "get_user": "get_/users/{id}",
57
+ "list_variables": "get_/variables",
58
+ "list_workflows": "get_/workflows",
59
+ "get_workflow": "get_/workflows/{id}",
60
+ "get_workflow_version": "get_/workflows/{id}/{versionId}",
61
+ "get_workflow_tags": "get_/workflows/{id}/tags"
62
+ },
63
+ "parameters": {
64
+ "id": {
65
+ "type": [
66
+ "string",
67
+ "number"
68
+ ],
69
+ "description": "Property id",
70
+ "required_for": [
71
+ "get_execution",
72
+ "get_tag",
73
+ "get_user",
74
+ "get_workflow",
75
+ "get_workflow_version",
76
+ "get_workflow_tags"
77
+ ],
78
+ "required": false
79
+ },
80
+ "name": {
81
+ "type": "string",
82
+ "description": "Property name"
83
+ },
84
+ "type": {
85
+ "type": "string",
86
+ "description": "Property type"
87
+ },
88
+ "data": {
89
+ "type": "object",
90
+ "description": "Credential data (object). Required when creating or changing credential type.",
91
+ "properties": {}
92
+ },
93
+ "isResolvable": {
94
+ "type": "boolean",
95
+ "description": "Property isResolvable"
96
+ },
97
+ "createdAt": {
98
+ "type": "string",
99
+ "description": "Property createdAt"
100
+ },
101
+ "updatedAt": {
102
+ "type": "string",
103
+ "description": "Property updatedAt"
104
+ },
105
+ "isGlobal": {
106
+ "type": "boolean",
107
+ "description": "Property isGlobal"
108
+ },
109
+ "isPartialData": {
110
+ "type": "boolean",
111
+ "description": "Property isPartialData"
112
+ },
113
+ "destinationProjectId": {
114
+ "type": "string",
115
+ "description": "Property destinationProjectId"
116
+ },
117
+ "credentialTypeName": {
118
+ "type": "string",
119
+ "description": "The credential type name that you want to get the schema for",
120
+ "required_for": [
121
+ "get_credential_schema"
122
+ ],
123
+ "required": false
124
+ },
125
+ "includeData": {
126
+ "type": "boolean",
127
+ "description": "Whether or not to include the execution's detailed data."
128
+ },
129
+ "status": {
130
+ "type": "string",
131
+ "description": "Status to filter the executions by."
132
+ },
133
+ "workflowId": {
134
+ "type": "string",
135
+ "description": "Workflow to filter the executions by."
136
+ },
137
+ "projectId": {
138
+ "type": "string",
139
+ "description": "Parameter projectId"
140
+ },
141
+ "limit": {
142
+ "type": "number",
143
+ "description": "The maximum number of items to return."
144
+ },
145
+ "cursor": {
146
+ "type": "string",
147
+ "description": "Paginate by setting the cursor parameter to the nextCursor attribute returned by the previous request's response. Default value fetches the first \"page\" of the collection. See pagination for more detail."
148
+ },
149
+ "loadWorkflow": {
150
+ "type": "boolean",
151
+ "description": "Property loadWorkflow"
152
+ },
153
+ "relations": {
154
+ "type": "array",
155
+ "description": "Array of user relations to add: [{ userId, role }]",
156
+ "items": {
157
+ "type": "object",
158
+ "properties": {
159
+ "userId": {
160
+ "type": "string"
161
+ },
162
+ "role": {
163
+ "type": "string"
164
+ }
165
+ }
166
+ }
167
+ },
168
+ "userId": {
169
+ "type": "string",
170
+ "description": "The ID of the user."
171
+ },
172
+ "role": {
173
+ "type": "string",
174
+ "description": "Property role"
175
+ },
176
+ "includeRole": {
177
+ "type": "boolean",
178
+ "description": "Whether to include the user's role or not."
179
+ },
180
+ "newRoleName": {
181
+ "type": "string",
182
+ "description": "Property newRoleName"
183
+ },
184
+ "users": {
185
+ "type": "array",
186
+ "description": "Array of users to create: [{ email, role }].",
187
+ "items": {
188
+ "type": "object",
189
+ "properties": {}
190
+ }
191
+ },
192
+ "state": {
193
+ "type": "string",
194
+ "description": "Parameter state"
195
+ },
196
+ "key": {
197
+ "type": "string",
198
+ "description": "Property key"
199
+ },
200
+ "value": {
201
+ "type": "string",
202
+ "description": "Property value"
203
+ },
204
+ "active": {
205
+ "type": "boolean",
206
+ "description": "Parameter active"
207
+ },
208
+ "tags": {
209
+ "type": "array",
210
+ "description": "Workflow tags (array of tag objects). Read-only on create/update; use update_tags action to modify.",
211
+ "items": {
212
+ "type": "object",
213
+ "properties": {}
214
+ }
215
+ },
216
+ "excludePinnedData": {
217
+ "type": "boolean",
218
+ "description": "Set this to avoid retrieving pinned data"
219
+ },
220
+ "nodes": {
221
+ "type": "array",
222
+ "description": "Workflow nodes array. Each node should follow n8n node schema (id, name, type, typeVersion, position, parameters, etc.).",
223
+ "items": {
224
+ "type": "object",
225
+ "properties": {}
226
+ }
227
+ },
228
+ "connections": {
229
+ "type": "object",
230
+ "description": "Connections map keyed by node name, following n8n workflow schema.",
231
+ "properties": {}
232
+ },
233
+ "settings": {
234
+ "type": "object",
235
+ "description": "Workflow settings object (timezone, executionTimeout, etc.).",
236
+ "properties": {}
237
+ },
238
+ "staticData": {
239
+ "type": "string",
240
+ "description": "Property staticData"
241
+ },
242
+ "shared": {
243
+ "type": "array",
244
+ "description": "Property shared",
245
+ "items": {
246
+ "type": "object",
247
+ "properties": {}
248
+ }
249
+ },
250
+ "activeVersion": {
251
+ "type": "object",
252
+ "description": "Property activeVersion",
253
+ "properties": {}
254
+ },
255
+ "versionId": {
256
+ "type": "string",
257
+ "description": "The version ID to retrieve",
258
+ "required_for": [
259
+ "get_workflow_version"
260
+ ],
261
+ "required": false
262
+ },
263
+ "description": {
264
+ "type": "string",
265
+ "description": "Property description"
266
+ },
267
+ "tag_ids": {
268
+ "type": "array",
269
+ "description": "Tag IDs to apply to the workflow: [{ id }].",
270
+ "items": {
271
+ "type": "object",
272
+ "properties": {}
273
+ }
274
+ },
275
+ "action": {
276
+ "type": "string",
277
+ "enum": [
278
+ "get_credential_schema",
279
+ "list_executions",
280
+ "get_execution",
281
+ "list_projects",
282
+ "list_tags",
283
+ "get_tag",
284
+ "list_users",
285
+ "get_user",
286
+ "list_variables",
287
+ "list_workflows",
288
+ "get_workflow",
289
+ "get_workflow_version",
290
+ "get_workflow_tags"
291
+ ],
292
+ "description": "Action to perform",
293
+ "required": true
294
+ }
295
+ },
296
+ "response_fields": {
297
+ "list_executions": [
298
+ "data(id,status,mode,startedAt,stoppedAt,workflowId,finished,retryOf,retrySuccessId)",
299
+ "nextCursor"
300
+ ],
301
+ "get_execution": [
302
+ "id",
303
+ "status",
304
+ "mode",
305
+ "startedAt",
306
+ "stoppedAt",
307
+ "workflowId",
308
+ "finished",
309
+ "retryOf",
310
+ "retrySuccessId"
311
+ ],
312
+ "list_projects": [
313
+ "data(id,name,type)",
314
+ "nextCursor"
315
+ ],
316
+ "list_tags": [
317
+ "data(id,name,createdAt,updatedAt)",
318
+ "nextCursor"
319
+ ],
320
+ "get_tag": [
321
+ "id",
322
+ "name",
323
+ "createdAt",
324
+ "updatedAt"
325
+ ],
326
+ "list_users": [
327
+ "data(id,email,firstName,lastName,role,isPending)",
328
+ "nextCursor"
329
+ ],
330
+ "get_user": [
331
+ "id",
332
+ "email",
333
+ "firstName",
334
+ "lastName",
335
+ "role",
336
+ "isPending",
337
+ "createdAt",
338
+ "updatedAt"
339
+ ],
340
+ "list_variables": [
341
+ "data(id,key,value,type,project(id,name,type))",
342
+ "nextCursor"
343
+ ],
344
+ "list_workflows": [
345
+ "data(id,name,active,createdAt,updatedAt,tags(id,name),settings(timezone,executionTimeout))",
346
+ "nextCursor"
347
+ ],
348
+ "get_workflow": [
349
+ "id",
350
+ "name",
351
+ "active",
352
+ "createdAt",
353
+ "updatedAt",
354
+ "tags(id,name)",
355
+ "settings(timezone,executionTimeout)"
356
+ ],
357
+ "get_workflow_version": [
358
+ "versionId",
359
+ "workflowId",
360
+ "name",
361
+ "createdAt",
362
+ "updatedAt",
363
+ "authors"
364
+ ],
365
+ "get_workflow_tags": [
366
+ "id",
367
+ "name",
368
+ "createdAt",
369
+ "updatedAt"
370
+ ]
371
+ }
372
+ },
373
+ {
374
+ "name": "modify_n8n",
375
+ "description": "Write access to n8n resources (create/update/delete/activate/deactivate/transfer).",
376
+ "metadata_params": [
377
+ "action"
378
+ ],
379
+ "operations": {
380
+ "generate_audit": "post_/audit",
381
+ "create_credential": "post_/credentials",
382
+ "update_credential": "updateCredential",
383
+ "delete_credential": "deleteCredential",
384
+ "transfer_credential": "put_/credentials/{id}/transfer",
385
+ "delete_execution": "delete_/executions/{id}",
386
+ "retry_execution": "post_/executions/{id}/retry",
387
+ "create_project": "post_/projects",
388
+ "update_project": "put_/projects/{projectId}",
389
+ "delete_project": "delete_/projects/{projectId}",
390
+ "add_project_users": "post_/projects/{projectId}/users",
391
+ "remove_project_user": "delete_/projects/{projectId}/users/{userId}",
392
+ "update_project_user_role": "patch_/projects/{projectId}/users/{userId}",
393
+ "pull_source_control": "post_/source-control/pull",
394
+ "create_tag": "post_/tags",
395
+ "update_tag": "put_/tags/{id}",
396
+ "delete_tag": "delete_/tags/{id}",
397
+ "create_users": "post_/users",
398
+ "delete_user": "delete_/users/{id}",
399
+ "update_user_role": "patch_/users/{id}/role",
400
+ "create_variable": "post_/variables",
401
+ "update_variable": "put_/variables/{id}",
402
+ "delete_variable": "delete_/variables/{id}"
403
+ },
404
+ "parameters": {
405
+ "additionalOptions": {
406
+ "type": "object",
407
+ "description": "Property additionalOptions",
408
+ "properties": {}
409
+ },
410
+ "id": {
411
+ "type": [
412
+ "string",
413
+ "number"
414
+ ],
415
+ "description": "Property id",
416
+ "required_for": [
417
+ "update_credential",
418
+ "delete_credential",
419
+ "transfer_credential",
420
+ "delete_execution",
421
+ "retry_execution",
422
+ "update_tag",
423
+ "delete_tag",
424
+ "delete_user",
425
+ "update_user_role",
426
+ "update_variable",
427
+ "delete_variable"
428
+ ],
429
+ "required": false
430
+ },
431
+ "name": {
432
+ "type": "string",
433
+ "description": "Property name",
434
+ "required_for": [
435
+ "create_credential",
436
+ "create_project",
437
+ "update_project",
438
+ "create_tag",
439
+ "update_tag"
440
+ ],
441
+ "required": false
442
+ },
443
+ "type": {
444
+ "type": "string",
445
+ "description": "Property type",
446
+ "required_for": [
447
+ "create_credential"
448
+ ],
449
+ "required": false
450
+ },
451
+ "data": {
452
+ "type": "object",
453
+ "description": "Credential data (object). Required when creating or changing credential type.",
454
+ "properties": {},
455
+ "required_for": [
456
+ "create_credential"
457
+ ],
458
+ "required": false
459
+ },
460
+ "isResolvable": {
461
+ "type": "boolean",
462
+ "description": "Property isResolvable"
463
+ },
464
+ "createdAt": {
465
+ "type": "string",
466
+ "description": "Property createdAt"
467
+ },
468
+ "updatedAt": {
469
+ "type": "string",
470
+ "description": "Property updatedAt"
471
+ },
472
+ "isGlobal": {
473
+ "type": "boolean",
474
+ "description": "Property isGlobal"
475
+ },
476
+ "isPartialData": {
477
+ "type": "boolean",
478
+ "description": "Property isPartialData"
479
+ },
480
+ "destinationProjectId": {
481
+ "type": "string",
482
+ "description": "Property destinationProjectId",
483
+ "required_for": [
484
+ "transfer_credential"
485
+ ],
486
+ "required": false
487
+ },
488
+ "credentialTypeName": {
489
+ "type": "string",
490
+ "description": "The credential type name that you want to get the schema for"
491
+ },
492
+ "includeData": {
493
+ "type": "boolean",
494
+ "description": "Whether or not to include the execution's detailed data."
495
+ },
496
+ "status": {
497
+ "type": "string",
498
+ "description": "Status to filter the executions by."
499
+ },
500
+ "workflowId": {
501
+ "type": "string",
502
+ "description": "Workflow to filter the executions by."
503
+ },
504
+ "projectId": {
505
+ "type": "string",
506
+ "description": "Parameter projectId",
507
+ "required_for": [
508
+ "update_project",
509
+ "delete_project",
510
+ "add_project_users",
511
+ "remove_project_user",
512
+ "update_project_user_role"
513
+ ],
514
+ "required": false
515
+ },
516
+ "limit": {
517
+ "type": "number",
518
+ "description": "The maximum number of items to return."
519
+ },
520
+ "cursor": {
521
+ "type": "string",
522
+ "description": "Paginate by setting the cursor parameter to the nextCursor attribute returned by the previous request's response. Default value fetches the first \"page\" of the collection. See pagination for more detail."
523
+ },
524
+ "loadWorkflow": {
525
+ "type": "boolean",
526
+ "description": "Property loadWorkflow"
527
+ },
528
+ "relations": {
529
+ "type": "array",
530
+ "description": "Array of user relations to add: [{ userId, role }]",
531
+ "items": {
532
+ "type": "object",
533
+ "properties": {
534
+ "userId": {
535
+ "type": "string"
536
+ },
537
+ "role": {
538
+ "type": "string"
539
+ }
540
+ }
541
+ },
542
+ "required_for": [
543
+ "add_project_users"
544
+ ],
545
+ "required": false
546
+ },
547
+ "userId": {
548
+ "type": "string",
549
+ "description": "The ID of the user.",
550
+ "required_for": [
551
+ "remove_project_user",
552
+ "update_project_user_role"
553
+ ],
554
+ "required": false
555
+ },
556
+ "role": {
557
+ "type": "string",
558
+ "description": "Property role",
559
+ "required_for": [
560
+ "update_project_user_role"
561
+ ],
562
+ "required": false
563
+ },
564
+ "force": {
565
+ "type": "boolean",
566
+ "description": "Property force"
567
+ },
568
+ "variables": {
569
+ "type": "object",
570
+ "description": "Property variables",
571
+ "properties": {}
572
+ },
573
+ "includeRole": {
574
+ "type": "boolean",
575
+ "description": "Whether to include the user's role or not."
576
+ },
577
+ "newRoleName": {
578
+ "type": "string",
579
+ "description": "Property newRoleName",
580
+ "required_for": [
581
+ "update_user_role"
582
+ ],
583
+ "required": false
584
+ },
585
+ "users": {
586
+ "type": "array",
587
+ "description": "Array of users to create: [{ email, role }].",
588
+ "items": {
589
+ "type": "object",
590
+ "properties": {}
591
+ },
592
+ "required_for": [
593
+ "create_users"
594
+ ],
595
+ "required": false
596
+ },
597
+ "state": {
598
+ "type": "string",
599
+ "description": "Parameter state"
600
+ },
601
+ "key": {
602
+ "type": "string",
603
+ "description": "Property key",
604
+ "required_for": [
605
+ "create_variable",
606
+ "update_variable"
607
+ ],
608
+ "required": false
609
+ },
610
+ "value": {
611
+ "type": "string",
612
+ "description": "Property value",
613
+ "required_for": [
614
+ "create_variable",
615
+ "update_variable"
616
+ ],
617
+ "required": false
618
+ },
619
+ "active": {
620
+ "type": "boolean",
621
+ "description": "Parameter active"
622
+ },
623
+ "tags": {
624
+ "type": "array",
625
+ "description": "Workflow tags (array of tag objects). Read-only on create/update; use update_tags action to modify.",
626
+ "items": {
627
+ "type": "object",
628
+ "properties": {}
629
+ }
630
+ },
631
+ "excludePinnedData": {
632
+ "type": "boolean",
633
+ "description": "Set this to avoid retrieving pinned data"
634
+ },
635
+ "staticData": {
636
+ "type": "string",
637
+ "description": "Property staticData"
638
+ },
639
+ "shared": {
640
+ "type": "array",
641
+ "description": "Property shared",
642
+ "items": {
643
+ "type": "object",
644
+ "properties": {}
645
+ }
646
+ },
647
+ "activeVersion": {
648
+ "type": "object",
649
+ "description": "Property activeVersion",
650
+ "properties": {}
651
+ },
652
+ "versionId": {
653
+ "type": "string",
654
+ "description": "The version ID to retrieve"
655
+ },
656
+ "description": {
657
+ "type": "string",
658
+ "description": "Property description"
659
+ },
660
+ "action": {
661
+ "type": "string",
662
+ "enum": [
663
+ "generate_audit",
664
+ "create_credential",
665
+ "update_credential",
666
+ "delete_credential",
667
+ "transfer_credential",
668
+ "delete_execution",
669
+ "retry_execution",
670
+ "create_project",
671
+ "update_project",
672
+ "delete_project",
673
+ "add_project_users",
674
+ "remove_project_user",
675
+ "update_project_user_role",
676
+ "pull_source_control",
677
+ "create_tag",
678
+ "update_tag",
679
+ "delete_tag",
680
+ "create_users",
681
+ "delete_user",
682
+ "update_user_role",
683
+ "create_variable",
684
+ "update_variable",
685
+ "delete_variable"
686
+ ],
687
+ "description": "Action to perform",
688
+ "required": true
689
+ }
690
+ },
691
+ "response_fields": {
692
+ "generate_audit": [
693
+ "\"Credentials Risk Report\"",
694
+ "\"Database Risk Report\"",
695
+ "\"Nodes Risk Report\"",
696
+ "\"Filesystem Risk Report\"",
697
+ "\"Instance Risk Report\""
698
+ ],
699
+ "create_credential": [
700
+ "id",
701
+ "name",
702
+ "type",
703
+ "createdAt",
704
+ "updatedAt"
705
+ ],
706
+ "update_credential": [
707
+ "id",
708
+ "name",
709
+ "type",
710
+ "createdAt",
711
+ "updatedAt"
712
+ ],
713
+ "delete_credential": [
714
+ "id",
715
+ "name",
716
+ "type",
717
+ "createdAt",
718
+ "updatedAt",
719
+ "isResolvable"
720
+ ],
721
+ "delete_execution": [
722
+ "id",
723
+ "status",
724
+ "mode",
725
+ "startedAt",
726
+ "stoppedAt",
727
+ "workflowId",
728
+ "finished",
729
+ "retryOf",
730
+ "retrySuccessId"
731
+ ],
732
+ "retry_execution": [
733
+ "id",
734
+ "status",
735
+ "mode",
736
+ "startedAt",
737
+ "stoppedAt",
738
+ "workflowId",
739
+ "finished",
740
+ "retryOf",
741
+ "retrySuccessId"
742
+ ],
743
+ "pull_source_control": [
744
+ "variables(added,changed)",
745
+ "credentials(id,name,type)",
746
+ "workflows(id,name)",
747
+ "tags(tags(id,name),mappings(workflowId,tagId))"
748
+ ],
749
+ "create_tag": [
750
+ "id",
751
+ "name",
752
+ "createdAt",
753
+ "updatedAt"
754
+ ],
755
+ "update_tag": [
756
+ "id",
757
+ "name",
758
+ "createdAt",
759
+ "updatedAt"
760
+ ],
761
+ "delete_tag": [
762
+ "id",
763
+ "name",
764
+ "createdAt",
765
+ "updatedAt"
766
+ ],
767
+ "create_users": [
768
+ "user(id,email,inviteAcceptUrl,emailSent)",
769
+ "error"
770
+ ]
771
+ }
772
+ },
773
+ {
774
+ "name": "modify_n8n_workflows",
775
+ "description": "Write access to n8n workflows (create/update/delete/activate/deactivate/transfer).",
776
+ "metadata_params": [
777
+ "action"
778
+ ],
779
+ "operations": {
780
+ "create_workflow": "post_/workflows",
781
+ "update_workflow": "put_/workflows/{id}",
782
+ "delete_workflow": "delete_/workflows/{id}",
783
+ "activate_workflow": "post_/workflows/{id}/activate",
784
+ "deactivate_workflow": "post_/workflows/{id}/deactivate",
785
+ "update_workflow_tags": "put_/workflows/{id}/tags",
786
+ "transfer_workflow": "put_/workflows/{id}/transfer"
787
+ },
788
+ "parameters": {
789
+ "id": {
790
+ "type": [
791
+ "string",
792
+ "number"
793
+ ],
794
+ "description": "Property id",
795
+ "required_for": [
796
+ "update_workflow",
797
+ "delete_workflow",
798
+ "activate_workflow",
799
+ "deactivate_workflow",
800
+ "update_workflow_tags",
801
+ "transfer_workflow"
802
+ ],
803
+ "required": false
804
+ },
805
+ "name": {
806
+ "type": "string",
807
+ "description": "Property name",
808
+ "required_for": [
809
+ "create_workflow",
810
+ "update_workflow"
811
+ ],
812
+ "required": false
813
+ },
814
+ "destinationProjectId": {
815
+ "type": "string",
816
+ "description": "Property destinationProjectId",
817
+ "required_for": [
818
+ "transfer_workflow"
819
+ ],
820
+ "required": false
821
+ },
822
+ "nodes": {
823
+ "type": "array",
824
+ "description": "Workflow nodes array. Each node should follow n8n node schema (id, name, type, typeVersion, position, parameters, etc.).",
825
+ "items": {
826
+ "type": "object",
827
+ "properties": {}
828
+ },
829
+ "required_for": [
830
+ "create_workflow",
831
+ "update_workflow"
832
+ ],
833
+ "required": false
834
+ },
835
+ "connections": {
836
+ "type": "object",
837
+ "description": "Connections map keyed by node name, following n8n workflow schema.",
838
+ "properties": {},
839
+ "required_for": [
840
+ "create_workflow",
841
+ "update_workflow"
842
+ ],
843
+ "required": false
844
+ },
845
+ "settings": {
846
+ "type": "object",
847
+ "description": "Workflow settings object (timezone, executionTimeout, etc.).",
848
+ "properties": {},
849
+ "required_for": [
850
+ "create_workflow",
851
+ "update_workflow"
852
+ ],
853
+ "required": false
854
+ },
855
+ "staticData": {
856
+ "type": "string",
857
+ "description": "Property staticData"
858
+ },
859
+ "shared": {
860
+ "type": "array",
861
+ "description": "Property shared",
862
+ "items": {
863
+ "type": "object",
864
+ "properties": {}
865
+ }
866
+ },
867
+ "activeVersion": {
868
+ "type": "object",
869
+ "description": "Property activeVersion",
870
+ "properties": {}
871
+ },
872
+ "tag_ids": {
873
+ "type": "array",
874
+ "description": "Tag IDs to apply to the workflow: [{ id }].",
875
+ "items": {
876
+ "type": "object",
877
+ "properties": {}
878
+ },
879
+ "required_for": [
880
+ "update_workflow_tags"
881
+ ],
882
+ "required": false
883
+ },
884
+ "action": {
885
+ "type": "string",
886
+ "enum": [
887
+ "create_workflow",
888
+ "update_workflow",
889
+ "delete_workflow",
890
+ "activate_workflow",
891
+ "deactivate_workflow",
892
+ "update_workflow_tags",
893
+ "transfer_workflow"
894
+ ],
895
+ "description": "Action to perform",
896
+ "required": true
897
+ }
898
+ },
899
+ "response_fields": {
900
+ "create_workflow": [
901
+ "id",
902
+ "name",
903
+ "active",
904
+ "createdAt",
905
+ "updatedAt",
906
+ "tags(id,name)",
907
+ "settings(timezone,executionTimeout)"
908
+ ],
909
+ "update_workflow": [
910
+ "id",
911
+ "name",
912
+ "active",
913
+ "createdAt",
914
+ "updatedAt",
915
+ "tags(id,name)",
916
+ "settings(timezone,executionTimeout)"
917
+ ],
918
+ "delete_workflow": [
919
+ "id",
920
+ "name",
921
+ "active",
922
+ "createdAt",
923
+ "updatedAt",
924
+ "tags(id,name)",
925
+ "settings(timezone,executionTimeout)"
926
+ ],
927
+ "activate_workflow": [
928
+ "id",
929
+ "name",
930
+ "active",
931
+ "createdAt",
932
+ "updatedAt",
933
+ "tags(id,name)",
934
+ "settings(timezone,executionTimeout)"
935
+ ],
936
+ "deactivate_workflow": [
937
+ "id",
938
+ "name",
939
+ "active",
940
+ "createdAt",
941
+ "updatedAt",
942
+ "tags(id,name)",
943
+ "settings(timezone,executionTimeout)"
944
+ ],
945
+ "update_workflow_tags": [
946
+ "id",
947
+ "name",
948
+ "createdAt",
949
+ "updatedAt"
950
+ ]
951
+ }
952
+ }
953
+ ],
954
+ "interceptors": {
955
+ "auth": {
956
+ "type": "custom-header",
957
+ "header_name": "X-N8N-API-KEY",
958
+ "value_from_env": "N8N_API_TOKEN"
959
+ },
960
+ "base_url": {
961
+ "value_from_env": "N8N_API_BASE_URL",
962
+ "default": "http://localhost:5678/api/v1"
963
+ }
964
+ }
965
+ }