@vellumai/assistant 0.12.2 → 0.12.3-staging.1

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 (298) hide show
  1. package/.env.example +2 -0
  2. package/AGENTS.md +1 -1
  3. package/docs/architecture/integrations.md +7 -0
  4. package/docs/architecture/memory.md +17 -2
  5. package/docs/credential-execution-service.md +1 -1
  6. package/docs/desktop-browser-cli.md +7 -3
  7. package/node_modules/@vellumai/ces-client/node_modules/@vellumai/service-contracts/src/__tests__/secret-detection.test.ts +1 -0
  8. package/node_modules/@vellumai/ces-client/node_modules/@vellumai/service-contracts/src/secret-detection.ts +4 -1
  9. package/node_modules/@vellumai/environments/src/shell.test.ts +21 -0
  10. package/node_modules/@vellumai/environments/src/shell.ts +24 -0
  11. package/node_modules/@vellumai/gateway-client/node_modules/@vellumai/service-contracts/src/__tests__/secret-detection.test.ts +1 -0
  12. package/node_modules/@vellumai/gateway-client/node_modules/@vellumai/service-contracts/src/secret-detection.ts +4 -1
  13. package/node_modules/@vellumai/gateway-client/src/inbound-contract.ts +8 -2
  14. package/node_modules/@vellumai/service-contracts/src/__tests__/secret-detection.test.ts +1 -0
  15. package/node_modules/@vellumai/service-contracts/src/secret-detection.ts +4 -1
  16. package/openapi.yaml +54 -5
  17. package/package.json +1 -1
  18. package/scripts/smoke-desktop-browser-cli.ts +1 -0
  19. package/scripts/sync-llm-catalog.ts +3 -0
  20. package/scripts/voice-ttft-spike.ts +2 -2
  21. package/src/__tests__/agent-loop.test.ts +259 -0
  22. package/src/__tests__/agent-wake-delegation-prompt.test.ts +64 -2
  23. package/src/__tests__/anthropic-provider.test.ts +55 -0
  24. package/src/__tests__/approval-interception-trust-gates.test.ts +40 -0
  25. package/src/__tests__/attachments-store.test.ts +22 -3
  26. package/src/__tests__/channel-approval.test.ts +9 -14
  27. package/src/__tests__/channel-reply-delivery.test.ts +56 -0
  28. package/src/__tests__/chat-credential-redaction.test.ts +23 -0
  29. package/src/__tests__/computer-use-screenshot-attachments.test.ts +411 -0
  30. package/src/__tests__/computer-use-screenshot-selection.test.ts +50 -0
  31. package/src/__tests__/conversation-agent-loop-inference-profile.test.ts +2 -0
  32. package/src/__tests__/conversation-agent-loop-overflow.test.ts +2 -0
  33. package/src/__tests__/conversation-agent-loop.test.ts +257 -6
  34. package/src/__tests__/conversation-attachments.test.ts +106 -0
  35. package/src/__tests__/conversation-fork-crud.test.ts +191 -0
  36. package/src/__tests__/conversation-rendered-delegation-state.test.ts +276 -0
  37. package/src/__tests__/credential-execution-client.test.ts +70 -53
  38. package/src/__tests__/db-conversation-tool-surface.test.ts +221 -0
  39. package/src/__tests__/events-tail-route.test.ts +33 -0
  40. package/src/__tests__/history-repair.test.ts +53 -0
  41. package/src/__tests__/inference-profile-session-handler.test.ts +26 -0
  42. package/src/__tests__/list-messages-tool-merge.test.ts +85 -1
  43. package/src/__tests__/llm-catalog-parity.test.ts +27 -4
  44. package/src/__tests__/oauth-apps-routes.test.ts +1 -0
  45. package/src/__tests__/oauth-commands-routes.test.ts +114 -101
  46. package/src/__tests__/oauth-connect-orchestrator.test.ts +2 -0
  47. package/src/__tests__/oauth-provider-serializer.test.ts +1 -0
  48. package/src/__tests__/oauth-providers-routes.test.ts +2 -0
  49. package/src/__tests__/persist-media-references.test.ts +50 -0
  50. package/src/__tests__/plugin-import-boundary-guard.test.ts +0 -1
  51. package/src/__tests__/run-conversation-turn-persistence.test.ts +138 -1
  52. package/src/__tests__/schedule-routes.test.ts +20 -0
  53. package/src/__tests__/scheduler-result-notification.test.ts +23 -4
  54. package/src/__tests__/script-proxy-certs.test.ts +1 -1
  55. package/src/__tests__/secret-routes-platform-proxy.test.ts +86 -31
  56. package/src/__tests__/secret-routes-scrub.test.ts +22 -27
  57. package/src/__tests__/secret-scanner.test.ts +20 -0
  58. package/src/__tests__/secure-keys-managed-failover.test.ts +8 -0
  59. package/src/__tests__/secure-keys.test.ts +7 -3
  60. package/src/__tests__/server-tool-pairing.test.ts +107 -0
  61. package/src/__tests__/skills.test.ts +5 -4
  62. package/src/__tests__/subagent-tool-gate-mode.test.ts +226 -0
  63. package/src/__tests__/terminal-tools.test.ts +8 -0
  64. package/src/__tests__/tool-result-follow-up.test.ts +99 -0
  65. package/src/__tests__/tool-result-metadata-plumbing.test.ts +63 -0
  66. package/src/__tests__/unicode.test.ts +36 -0
  67. package/src/agent/loop.ts +37 -12
  68. package/src/agent/tool-result-follow-up.ts +70 -0
  69. package/src/api/attachment-provenance.test.ts +68 -0
  70. package/src/api/computer-use-tool.test.ts +55 -0
  71. package/src/api/computer-use-tool.ts +27 -0
  72. package/src/api/events/assistant-outbound-attachment.ts +3 -0
  73. package/src/api/events/desktop-activity-changed.ts +10 -0
  74. package/src/api/events/question-request.ts +1 -0
  75. package/src/api/index.ts +11 -0
  76. package/src/api/responses/conversation-message.ts +3 -0
  77. package/src/approvals/approval-primitive.ts +5 -2
  78. package/src/approvals/scoped-approval-grants.ts +6 -2
  79. package/src/browser/virtual-desktop-target.ts +1 -2
  80. package/src/cli/commands/__tests__/cli-test-harness.ts +21 -3
  81. package/src/cli/commands/__tests__/plugins.test.ts +20 -1
  82. package/src/cli/commands/__tests__/schedules.test.ts +14 -0
  83. package/src/cli/commands/bash.help.ts +4 -3
  84. package/src/cli/commands/browser.help.ts +5 -1
  85. package/src/cli/commands/credentials.help.ts +3 -3
  86. package/src/cli/commands/oauth/index.help.ts +10 -0
  87. package/src/cli/commands/oauth/providers.ts +12 -0
  88. package/src/cli/commands/oauth/request.test.ts +179 -2
  89. package/src/cli/commands/oauth/request.ts +41 -10
  90. package/src/cli/commands/plugins.ts +12 -5
  91. package/src/cli/commands/schedules.ts +2 -0
  92. package/src/cli/lib/__tests__/inspect-plugin.test.ts +54 -0
  93. package/src/cli/lib/__tests__/install-from-github.test.ts +41 -0
  94. package/src/cli/lib/__tests__/local-plugin-upgrade.test.ts +133 -51
  95. package/src/cli/lib/__tests__/plugin-catalog-cache.test.ts +8 -2
  96. package/src/cli/lib/bundled-marketplace.json +855 -0
  97. package/src/cli/lib/bundled-plugin-packages.json +783 -1
  98. package/src/cli/lib/inspect-plugin.ts +11 -4
  99. package/src/cli/lib/upgrade-plugin.ts +19 -11
  100. package/src/cli/output.ts +18 -4
  101. package/src/config/__tests__/default-provider.test.ts +4 -0
  102. package/src/config/bundled-skills/schedule/SKILL.md +6 -6
  103. package/src/config/loader.ts +9 -17
  104. package/src/config/platform-identity.ts +8 -8
  105. package/src/config/profile-text-generation.test.ts +51 -0
  106. package/src/config/profile-text-generation.ts +51 -0
  107. package/src/config/schemas/__tests__/memory-v3.test.ts +12 -0
  108. package/src/config/schemas/llm.ts +7 -2
  109. package/src/config/schemas/mcp.ts +5 -1
  110. package/src/config/schemas/memory-v3.ts +12 -0
  111. package/src/credential-execution/ces-runtime.ts +2 -2
  112. package/src/credential-execution/executable-discovery.ts +36 -134
  113. package/src/credential-execution/process-manager.test.ts +20 -24
  114. package/src/credential-execution/process-manager.ts +24 -19
  115. package/src/daemon/__tests__/conversation-tool-setup.test.ts +43 -0
  116. package/src/daemon/__tests__/turn-tail-deleted-conversation.test.ts +36 -0
  117. package/src/daemon/assistant-attachments.ts +20 -12
  118. package/src/daemon/chat-credential-redaction.ts +16 -1
  119. package/src/daemon/conversation-agent-loop-handlers.ts +74 -3
  120. package/src/daemon/conversation-agent-loop.ts +12 -0
  121. package/src/daemon/conversation-attachments.ts +93 -12
  122. package/src/daemon/conversation-tool-setup.ts +71 -3
  123. package/src/daemon/conversation-turn-finalize.ts +26 -13
  124. package/src/daemon/conversation.ts +72 -17
  125. package/src/daemon/daemon-control.ts +3 -7
  126. package/src/daemon/lifecycle.ts +4 -4
  127. package/src/daemon/mcp-reload-service.ts +1 -1
  128. package/src/daemon/message-types/shared.ts +1 -0
  129. package/src/daemon/orphan-reaper.ts +4 -3
  130. package/src/daemon/persist-media-references.ts +20 -3
  131. package/src/daemon/tool-setup-types.ts +6 -0
  132. package/src/daemon/wake-conversation-ops.ts +50 -15
  133. package/src/desktop/desktop-automation-lease.test.ts +230 -0
  134. package/src/desktop/desktop-automation-lease.ts +90 -6
  135. package/src/desktop/desktop-help.ts +15 -0
  136. package/src/desktop/desktop-stream-bridge.test.ts +65 -10
  137. package/src/desktop/desktop-stream-bridge.ts +3 -3
  138. package/src/desktop/desktop-wallpaper-renderer.ts +132 -0
  139. package/src/desktop/desktop-wallpaper-worker.ts +17 -0
  140. package/src/desktop/desktop-wallpaper.test.ts +48 -7
  141. package/src/desktop/desktop-wallpaper.ts +34 -102
  142. package/src/desktop/virtual-desktop-feature.ts +1 -1
  143. package/src/mcp/__tests__/manager-tool-caps.test.ts +111 -0
  144. package/src/mcp/__tests__/startup.test.ts +30 -7
  145. package/src/mcp/__tests__/tool-caps.test.ts +107 -0
  146. package/src/mcp/manager.ts +168 -101
  147. package/src/mcp/startup.ts +33 -13
  148. package/src/mcp/tool-caps.ts +176 -0
  149. package/src/messaging/provider-message-metadata.ts +3 -3
  150. package/src/notifications/__tests__/copy-composer.test.ts +70 -0
  151. package/src/notifications/copy-composer.ts +11 -3
  152. package/src/notifications/schedule-result-producer.ts +4 -6
  153. package/src/oauth/AGENTS.md +2 -0
  154. package/src/oauth/__tests__/identity-verifier.test.ts +36 -1
  155. package/src/oauth/identity-verifier.ts +24 -0
  156. package/src/oauth/oauth-store.ts +11 -1
  157. package/src/oauth/provider-serializer.ts +1 -0
  158. package/src/oauth/seed-providers.ts +12 -0
  159. package/src/permissions/confirmation-guardian-request.test.ts +16 -0
  160. package/src/permissions/confirmation-guardian-request.ts +2 -3
  161. package/src/permissions/question-prompter.test.ts +31 -0
  162. package/src/permissions/question-prompter.ts +2 -0
  163. package/src/persistence/attachments-store.ts +84 -44
  164. package/src/persistence/conversation-crud.ts +111 -20
  165. package/src/persistence/conversation-plugin-facade.ts +30 -0
  166. package/src/persistence/conversation-tool-surface.ts +135 -0
  167. package/src/persistence/conversation-types.test.ts +32 -0
  168. package/src/persistence/conversation-types.ts +26 -4
  169. package/src/persistence/migrations/378-create-conversation-tool-surfaces.test.ts +78 -0
  170. package/src/persistence/migrations/378-create-conversation-tool-surfaces.ts +29 -0
  171. package/src/persistence/migrations/379-oauth-providers-response-ok-field.test.ts +92 -0
  172. package/src/persistence/migrations/379-oauth-providers-response-ok-field.ts +32 -0
  173. package/src/persistence/migrations/380-conversation-tool-surfaces-delegate-independent-tasks.test.ts +90 -0
  174. package/src/persistence/migrations/380-conversation-tool-surfaces-delegate-independent-tasks.ts +34 -0
  175. package/src/persistence/schema/conversation-tool-surfaces.ts +32 -0
  176. package/src/persistence/schema/index.ts +1 -0
  177. package/src/persistence/schema/oauth.ts +1 -0
  178. package/src/persistence/steps.ts +24 -3
  179. package/src/plugin-api/conversation-turn.ts +31 -7
  180. package/src/plugin-api/index.ts +11 -1
  181. package/src/plugin-api/plugin-channel-turn-trust.test.ts +133 -0
  182. package/src/plugin-api/plugin-channel-turn-trust.ts +71 -0
  183. package/src/plugins/defaults/memory/AGENTS.md +39 -5
  184. package/src/plugins/defaults/memory/__tests__/buffer-file.test.ts +365 -0
  185. package/src/plugins/defaults/memory/__tests__/buffer-format.test.ts +43 -0
  186. package/src/plugins/defaults/memory/__tests__/conversation-memory-purge.test.ts +1 -0
  187. package/src/plugins/defaults/memory/__tests__/db-memory-attach.test.ts +2 -0
  188. package/src/plugins/defaults/memory/__tests__/fixtures/buffer-appender.ts +17 -0
  189. package/src/plugins/defaults/memory/__tests__/memory-retrospective-job.test.ts +74 -0
  190. package/src/plugins/defaults/memory/__tests__/memory-run-evidence.test.ts +161 -0
  191. package/src/plugins/defaults/memory/__tests__/relocated-memory-test-rows.ts +10 -0
  192. package/src/plugins/defaults/memory/buffer-file.ts +354 -0
  193. package/src/plugins/defaults/memory/buffer-format.ts +40 -0
  194. package/src/plugins/defaults/memory/context-search/agent-runner.ts +1 -2
  195. package/src/plugins/defaults/memory/context-search/format.ts +2 -1
  196. package/src/plugins/defaults/memory/context-search/sources/memory-v2.ts +2 -1
  197. package/src/plugins/defaults/memory/context-search/sources/workspace.ts +2 -1
  198. package/src/plugins/defaults/memory/conversation-memory-purge.ts +4 -0
  199. package/src/plugins/defaults/memory/graph/capability-seed.ts +1 -2
  200. package/src/plugins/defaults/memory/graph/tool-handlers.ts +1 -42
  201. package/src/plugins/defaults/memory/host-utils.ts +0 -10
  202. package/src/plugins/defaults/memory/injectors.ts +4 -3
  203. package/src/plugins/defaults/memory/memory-retrospective-job.ts +72 -183
  204. package/src/plugins/defaults/memory/memory-run-evidence.ts +213 -0
  205. package/src/plugins/defaults/memory/src/memory-item-routes.test.ts +1 -1
  206. package/src/plugins/defaults/memory/substrate/__tests__/consolidation-job.test.ts +407 -99
  207. package/src/plugins/defaults/memory/substrate/__tests__/consolidation-prompt-flag-gating-guard.test.ts +10 -0
  208. package/src/plugins/defaults/memory/substrate/__tests__/prompts-consolidation.test.ts +107 -7
  209. package/src/plugins/defaults/memory/substrate/consolidation-job.ts +307 -86
  210. package/src/plugins/defaults/memory/substrate/consolidation-tool-surface.ts +34 -0
  211. package/src/plugins/defaults/memory/substrate/page-index.ts +2 -1
  212. package/src/plugins/defaults/memory/substrate/prompts/consolidation.ts +89 -49
  213. package/src/plugins/defaults/memory/substrate/sweep-job.ts +1 -1
  214. package/src/plugins/defaults/memory/tools.ts +1 -1
  215. package/src/plugins/defaults/memory/v1/graph/consolidation.ts +2 -2
  216. package/src/plugins/defaults/memory/v1/graph/extraction.ts +2 -1
  217. package/src/plugins/defaults/memory/v1/graph/retriever.ts +1 -1
  218. package/src/plugins/defaults/memory/v2/__tests__/migration.test.ts +5 -0
  219. package/src/plugins/defaults/memory/v2/__tests__/reranker.test.ts +5 -2
  220. package/src/plugins/defaults/memory/v2/reranker.ts +2 -1
  221. package/src/plugins/defaults/memory/v3/__tests__/injection.test.ts +81 -1
  222. package/src/plugins/defaults/memory/v3/__tests__/orchestrate.test.ts +87 -0
  223. package/src/plugins/defaults/memory/v3/__tests__/plugin-schema.test.ts +12 -0
  224. package/src/plugins/defaults/memory/v3/__tests__/pool-log-store.test.ts +183 -4
  225. package/src/plugins/defaults/memory/v3/__tests__/shadow-plugin.test.ts +103 -2
  226. package/src/plugins/defaults/memory/v3/card.ts +2 -1
  227. package/src/plugins/defaults/memory/v3/injector.ts +212 -178
  228. package/src/plugins/defaults/memory/v3/orchestrate.ts +112 -25
  229. package/src/plugins/defaults/memory/v3/plugin-schema.ts +54 -4
  230. package/src/plugins/defaults/memory/v3/pool-log-store.ts +253 -1
  231. package/src/plugins/defaults/memory/v3/pool-select.test.ts +35 -2
  232. package/src/plugins/defaults/memory/v3/pool-select.ts +31 -19
  233. package/src/plugins/defaults/memory/v3/sections.ts +2 -1
  234. package/src/plugins/defaults/memory/v3/shadow-plugin.ts +41 -14
  235. package/src/plugins/defaults/tool-error/hooks/post-tool-use.ts +4 -1
  236. package/src/plugins/defaults/tool-result-truncate/terminal.ts +1 -46
  237. package/src/prompts/__tests__/parallel-tasks-section.test.ts +25 -0
  238. package/src/prompts/delegation-gate.ts +57 -0
  239. package/src/prompts/system-prompt.ts +14 -32
  240. package/src/providers/inference/adapter-factory.ts +6 -0
  241. package/src/providers/jev/client.test.ts +260 -0
  242. package/src/providers/jev/client.ts +518 -0
  243. package/src/providers/model-catalog.ts +58 -3
  244. package/src/providers/server-tool-pairing.ts +16 -7
  245. package/src/runtime/AGENTS.md +2 -2
  246. package/src/runtime/__tests__/agent-wake.test.ts +94 -1
  247. package/src/runtime/agent-wake.ts +31 -4
  248. package/src/runtime/guardian-action-service.ts +2 -17
  249. package/src/runtime/guardian-reply-router.ts +1 -8
  250. package/src/runtime/http-server.ts +2 -2
  251. package/src/runtime/migrations/__tests__/vbundle-import-policy.test.ts +89 -0
  252. package/src/runtime/migrations/vbundle-import-policy.ts +33 -11
  253. package/src/runtime/routes/__tests__/inference-profiles-routes.test.ts +24 -2
  254. package/src/runtime/routes/channel-route-shared.ts +1 -9
  255. package/src/runtime/routes/conversation-routes.ts +29 -4
  256. package/src/runtime/routes/desktop-setup-routes.test.ts +2 -2
  257. package/src/runtime/routes/desktop-setup-routes.ts +8 -5
  258. package/src/runtime/routes/guardian-approval-interception.ts +24 -0
  259. package/src/runtime/routes/inbound-message-handler.ts +2 -3
  260. package/src/runtime/routes/inbound-stages/background-dispatch.test.ts +1 -1
  261. package/src/runtime/routes/inbound-stages/background-dispatch.ts +7 -4
  262. package/src/runtime/routes/inference-profile-session-handler.ts +11 -1
  263. package/src/runtime/routes/inference-profiles-routes.ts +9 -0
  264. package/src/runtime/routes/oauth-commands-routes.ts +57 -54
  265. package/src/runtime/routes/oauth-providers.ts +4 -0
  266. package/src/runtime/routes/oauth-request-hints.test.ts +246 -0
  267. package/src/runtime/routes/oauth-request-hints.ts +149 -0
  268. package/src/runtime/routes/schedule-routes.ts +2 -0
  269. package/src/runtime/routes/secret-routes.ts +99 -119
  270. package/src/schedule/__tests__/worker-mcp-bootstrap.test.ts +107 -0
  271. package/src/schedule/__tests__/worker-mcp-readiness.test.ts +173 -0
  272. package/src/schedule/__tests__/worker-mcp-tools.test.ts +13 -47
  273. package/src/schedule/run-script.ts +2 -2
  274. package/src/schedule/scheduler.ts +47 -11
  275. package/src/schedule/tool-surface-readiness.ts +65 -0
  276. package/src/schedule/worker-mcp.ts +85 -0
  277. package/src/schedule/worker.ts +9 -31
  278. package/src/security/secure-keys.ts +60 -48
  279. package/src/tools/ask-question/ask-question-tool.test.ts +167 -5
  280. package/src/tools/ask-question/ask-question-tool.ts +119 -23
  281. package/src/tools/browser/browser-execution.ts +7 -1
  282. package/src/tools/host-terminal/host-shell.ts +12 -6
  283. package/src/tools/shared/filesystem/file-ops-service.ts +1 -31
  284. package/src/tools/shared/shell-output.test.ts +10 -0
  285. package/src/tools/shared/shell-output.ts +14 -2
  286. package/src/tools/skills/sandbox-runner.ts +13 -2
  287. package/src/tools/skills/scaffold-managed.ts +2 -1
  288. package/src/tools/terminal/__tests__/safe-env.test.ts +33 -4
  289. package/src/tools/terminal/__tests__/sanitized-bash.test.ts +0 -14
  290. package/src/tools/terminal/safe-env.ts +35 -24
  291. package/src/tools/terminal/sanitized-bash.ts +15 -2
  292. package/src/tools/terminal/shell-launch.test.ts +162 -0
  293. package/src/tools/terminal/shell.test.ts +29 -0
  294. package/src/tools/terminal/shell.ts +13 -7
  295. package/src/util/browser-human-verification.ts +14 -0
  296. package/src/util/host-process.test.ts +17 -1
  297. package/src/util/host-process.ts +24 -0
  298. package/src/util/unicode.ts +29 -0
@@ -578,6 +578,861 @@
578
578
  "homepage": "https://github.com/vellum-ai/writing-coach",
579
579
  "license": "MIT",
580
580
  "icon": "\u270d\ufe0f"
581
+ },
582
+ {
583
+ "name": "fathom",
584
+ "source": {
585
+ "source": "local",
586
+ "path": "plugins/mcp-catalog/fathom",
587
+ "version": "1.0.2"
588
+ },
589
+ "description": "Search meeting transcripts and summaries.",
590
+ "homepage": "https://developers.fathom.ai/mcp-docs",
591
+ "license": "MIT",
592
+ "integration": {
593
+ "kind": "mcp",
594
+ "displayName": "Fathom",
595
+ "documentationUrl": "https://developers.fathom.ai/mcp-docs",
596
+ "verifiedAt": "2026-09-10",
597
+ "verification": "documentation-only",
598
+ "setup": {
599
+ "mode": "oauth",
600
+ "instructions": "Sign in with the Fathom account whose meetings you want to use."
601
+ },
602
+ "logo": "fathom-mcp.png"
603
+ }
604
+ },
605
+ {
606
+ "name": "brex",
607
+ "source": {
608
+ "source": "local",
609
+ "path": "plugins/mcp-catalog/brex",
610
+ "version": "1.0.2"
611
+ },
612
+ "description": "Review expenses, cards, and company spending.",
613
+ "homepage": "https://www.brex.com/support/using-brex-in-ai-apps",
614
+ "license": "MIT",
615
+ "integration": {
616
+ "kind": "mcp",
617
+ "displayName": "Brex",
618
+ "documentationUrl": "https://www.brex.com/support/using-brex-in-ai-apps",
619
+ "verifiedAt": "2026-09-10",
620
+ "verification": "documentation-only",
621
+ "setup": {
622
+ "mode": "oauth",
623
+ "instructions": "A Brex admin must enable AI assistant access and accept the Developer API agreement."
624
+ },
625
+ "logo": "brex-mcp.png"
626
+ }
627
+ },
628
+ {
629
+ "name": "ramp",
630
+ "source": {
631
+ "source": "local",
632
+ "path": "plugins/mcp-catalog/ramp",
633
+ "version": "1.0.2"
634
+ },
635
+ "description": "Explore expenses, bills, and company spending.",
636
+ "homepage": "https://agents.ramp.com/docs/guides/connecting",
637
+ "license": "MIT",
638
+ "integration": {
639
+ "kind": "mcp",
640
+ "displayName": "Ramp",
641
+ "documentationUrl": "https://agents.ramp.com/docs/guides/connecting",
642
+ "verifiedAt": "2026-09-10",
643
+ "verification": "documentation-only",
644
+ "setup": {
645
+ "mode": "manual",
646
+ "instructions": "Ask Ramp to allowlist this client or gateway's exact OAuth redirect URI before connecting."
647
+ },
648
+ "logo": "ramp-mcp.png"
649
+ }
650
+ },
651
+ {
652
+ "name": "linear",
653
+ "source": {
654
+ "source": "local",
655
+ "path": "plugins/mcp-catalog/linear",
656
+ "version": "1.0.2"
657
+ },
658
+ "description": "Find issues, projects, and team updates.",
659
+ "homepage": "https://linear.app/docs/mcp",
660
+ "license": "MIT",
661
+ "integration": {
662
+ "kind": "mcp",
663
+ "displayName": "Linear",
664
+ "documentationUrl": "https://linear.app/docs/mcp",
665
+ "verifiedAt": "2026-09-10",
666
+ "verification": "documentation-only",
667
+ "setup": {
668
+ "mode": "oauth",
669
+ "instructions": "Choose the Linear workspace to authorize; access follows your account permissions."
670
+ },
671
+ "logo": "linear-mcp.png",
672
+ "oauthProvider": "linear"
673
+ }
674
+ },
675
+ {
676
+ "name": "notion",
677
+ "source": {
678
+ "source": "local",
679
+ "path": "plugins/mcp-catalog/notion",
680
+ "version": "1.0.2"
681
+ },
682
+ "description": "Search and work with workspace pages and databases.",
683
+ "homepage": "https://developers.notion.com/guides/mcp/get-started-with-mcp",
684
+ "license": "MIT",
685
+ "integration": {
686
+ "kind": "mcp",
687
+ "displayName": "Notion",
688
+ "documentationUrl": "https://developers.notion.com/guides/mcp/get-started-with-mcp",
689
+ "verifiedAt": "2026-09-10",
690
+ "verification": "documentation-only",
691
+ "setup": {
692
+ "mode": "oauth",
693
+ "instructions": "Authorize the Notion workspace and content you want to use."
694
+ },
695
+ "logo": "notion-mcp.png",
696
+ "oauthProvider": "notion"
697
+ }
698
+ },
699
+ {
700
+ "name": "sentry",
701
+ "source": {
702
+ "source": "local",
703
+ "path": "plugins/mcp-catalog/sentry",
704
+ "version": "1.0.2"
705
+ },
706
+ "description": "Investigate errors, issues, and application performance.",
707
+ "homepage": "https://github.com/getsentry/sentry-mcp",
708
+ "license": "MIT",
709
+ "integration": {
710
+ "kind": "mcp",
711
+ "displayName": "Sentry",
712
+ "documentationUrl": "https://github.com/getsentry/sentry-mcp",
713
+ "verifiedAt": "2026-09-10",
714
+ "verification": "documentation-only",
715
+ "setup": {
716
+ "mode": "oauth",
717
+ "instructions": "Sign in to Sentry and authorize the organizations you want to use."
718
+ },
719
+ "logo": "sentry-mcp.png"
720
+ }
721
+ },
722
+ {
723
+ "name": "stripe",
724
+ "source": {
725
+ "source": "local",
726
+ "path": "plugins/mcp-catalog/stripe",
727
+ "version": "1.0.2"
728
+ },
729
+ "description": "Explore payments, customers, and account activity.",
730
+ "homepage": "https://docs.stripe.com/mcp",
731
+ "license": "MIT",
732
+ "integration": {
733
+ "kind": "mcp",
734
+ "displayName": "Stripe",
735
+ "documentationUrl": "https://docs.stripe.com/mcp",
736
+ "verifiedAt": "2026-09-10",
737
+ "verification": "documentation-only",
738
+ "setup": {
739
+ "mode": "oauth",
740
+ "instructions": "Authorize the intended Stripe account and environment; your administrator may need to enable MCP access."
741
+ },
742
+ "logo": "stripe-mcp.png"
743
+ }
744
+ },
745
+ {
746
+ "name": "atlassian",
747
+ "source": {
748
+ "source": "local",
749
+ "path": "plugins/mcp-catalog/atlassian",
750
+ "version": "1.0.2"
751
+ },
752
+ "description": "Search Jira, Confluence, and connected Atlassian products.",
753
+ "homepage": "https://atlassian.github.io/atlassian-mcp-server/",
754
+ "license": "Apache-2.0",
755
+ "integration": {
756
+ "kind": "mcp",
757
+ "displayName": "Atlassian",
758
+ "documentationUrl": "https://atlassian.github.io/atlassian-mcp-server/",
759
+ "verifiedAt": "2026-09-10",
760
+ "verification": "documentation-only",
761
+ "setup": {
762
+ "mode": "oauth",
763
+ "instructions": "Requires an Atlassian Cloud site and access allowed by your organization."
764
+ },
765
+ "logo": "atlassian-mcp.png"
766
+ }
767
+ },
768
+ {
769
+ "name": "amplemarket",
770
+ "source": {
771
+ "source": "local",
772
+ "path": "plugins/mcp-catalog/amplemarket",
773
+ "version": "1.0.2"
774
+ },
775
+ "description": "Find and enrich prospects, then manage outreach sequences.",
776
+ "homepage": "https://knowledge.amplemarket.com/articles/8022685319-connecting-to-the-amplemarket-mcp-server",
777
+ "license": "MIT",
778
+ "integration": {
779
+ "kind": "mcp",
780
+ "displayName": "Amplemarket",
781
+ "documentationUrl": "https://knowledge.amplemarket.com/articles/8022685319-connecting-to-the-amplemarket-mcp-server",
782
+ "verifiedAt": "2026-09-10",
783
+ "verification": "documentation-only",
784
+ "setup": {
785
+ "mode": "oauth",
786
+ "instructions": "Sign in to the Amplemarket workspace you want to use."
787
+ },
788
+ "logo": "amplemarket-mcp.png"
789
+ }
790
+ },
791
+ {
792
+ "name": "ashby",
793
+ "source": {
794
+ "source": "local",
795
+ "path": "plugins/mcp-catalog/ashby",
796
+ "version": "1.0.1"
797
+ },
798
+ "description": "Search candidates, prepare interviews, and manage recruiting pipelines.",
799
+ "homepage": "https://docs.ashbyhq.com/ashby-mcp-server-beta",
800
+ "license": "MIT",
801
+ "integration": {
802
+ "kind": "mcp",
803
+ "displayName": "Ashby",
804
+ "documentationUrl": "https://docs.ashbyhq.com/ashby-mcp-server-beta",
805
+ "verifiedAt": "2026-09-10",
806
+ "verification": "documentation-only",
807
+ "setup": {
808
+ "mode": "oauth",
809
+ "instructions": "An organization admin must enable MCP. Analytics-only organizations are not supported."
810
+ },
811
+ "logo": "ashby-mcp.png"
812
+ }
813
+ },
814
+ {
815
+ "name": "attio",
816
+ "source": {
817
+ "source": "local",
818
+ "path": "plugins/mcp-catalog/attio",
819
+ "version": "1.0.2"
820
+ },
821
+ "description": "Search and update CRM records, lists, notes, and tasks.",
822
+ "homepage": "https://docs.attio.com/mcp/overview",
823
+ "license": "MIT",
824
+ "integration": {
825
+ "kind": "mcp",
826
+ "displayName": "Attio",
827
+ "documentationUrl": "https://docs.attio.com/mcp/overview",
828
+ "verifiedAt": "2026-09-10",
829
+ "verification": "documentation-only",
830
+ "setup": {
831
+ "mode": "oauth",
832
+ "instructions": "Authorize the Attio workspace you want to use."
833
+ },
834
+ "logo": "attio-mcp.png"
835
+ }
836
+ },
837
+ {
838
+ "name": "calendly",
839
+ "source": {
840
+ "source": "local",
841
+ "path": "plugins/mcp-catalog/calendly",
842
+ "version": "1.0.2"
843
+ },
844
+ "description": "Review availability, scheduling links, and planned events.",
845
+ "homepage": "https://developer.calendly.com/docs/mcp/calendly-mcp-server",
846
+ "license": "MIT",
847
+ "integration": {
848
+ "kind": "mcp",
849
+ "displayName": "Calendly",
850
+ "documentationUrl": "https://developer.calendly.com/docs/mcp/calendly-mcp-server",
851
+ "verifiedAt": "2026-09-10",
852
+ "verification": "documentation-only",
853
+ "setup": {
854
+ "mode": "oauth",
855
+ "instructions": "Sign in to Calendly. Available actions depend on your plan and account permissions."
856
+ },
857
+ "logo": "calendly-mcp.png",
858
+ "oauthProvider": "calendly"
859
+ }
860
+ },
861
+ {
862
+ "name": "circleback",
863
+ "source": {
864
+ "source": "local",
865
+ "path": "plugins/mcp-catalog/circleback",
866
+ "version": "1.0.2"
867
+ },
868
+ "description": "Search meeting notes, transcripts, and action items.",
869
+ "homepage": "https://support.circleback.ai/en/articles/13249081-circleback-mcp",
870
+ "license": "MIT",
871
+ "integration": {
872
+ "kind": "mcp",
873
+ "displayName": "Circleback",
874
+ "documentationUrl": "https://support.circleback.ai/en/articles/13249081-circleback-mcp",
875
+ "verifiedAt": "2026-09-10",
876
+ "verification": "documentation-only",
877
+ "setup": {
878
+ "mode": "oauth",
879
+ "instructions": "Sign in with the Circleback account whose meetings you want to use."
880
+ },
881
+ "logo": "circleback-mcp.png"
882
+ }
883
+ },
884
+ {
885
+ "name": "clay",
886
+ "source": {
887
+ "source": "local",
888
+ "path": "plugins/mcp-catalog/clay",
889
+ "version": "1.0.2"
890
+ },
891
+ "description": "Research, enrich, and update people and company records.",
892
+ "homepage": "https://university.clay.com/docs/connect-to-clay-mcp",
893
+ "license": "MIT",
894
+ "integration": {
895
+ "kind": "mcp",
896
+ "displayName": "Clay",
897
+ "documentationUrl": "https://university.clay.com/docs/connect-to-clay-mcp",
898
+ "verifiedAt": "2026-09-10",
899
+ "verification": "documentation-only",
900
+ "setup": {
901
+ "mode": "oauth",
902
+ "instructions": "Requires workspace access. A workspace admin may need to allow MCP connections."
903
+ },
904
+ "logo": "clay-mcp.png"
905
+ }
906
+ },
907
+ {
908
+ "name": "craft",
909
+ "source": {
910
+ "source": "local",
911
+ "path": "plugins/mcp-catalog/craft",
912
+ "version": "1.0.2"
913
+ },
914
+ "description": "Search and work with documents in your Craft workspace.",
915
+ "homepage": "https://www.craft.do/imagine/guide/mcp",
916
+ "license": "MIT",
917
+ "integration": {
918
+ "kind": "mcp",
919
+ "displayName": "Craft",
920
+ "documentationUrl": "https://www.craft.do/imagine/guide/mcp",
921
+ "verifiedAt": "2026-09-10",
922
+ "verification": "documentation-only",
923
+ "setup": {
924
+ "mode": "oauth",
925
+ "instructions": "Authorize the Craft workspace and documents you want to use."
926
+ },
927
+ "logo": "craft-mcp.png"
928
+ }
929
+ },
930
+ {
931
+ "name": "customer-io",
932
+ "source": {
933
+ "source": "local",
934
+ "path": "plugins/mcp-catalog/customer-io",
935
+ "version": "1.0.2"
936
+ },
937
+ "description": "Explore campaigns, broadcasts, segments, and customer activity.",
938
+ "homepage": "https://docs.customer.io/ai/mcp/get-started/",
939
+ "license": "MIT",
940
+ "integration": {
941
+ "kind": "mcp",
942
+ "displayName": "Customer.io",
943
+ "documentationUrl": "https://docs.customer.io/ai/mcp/get-started/",
944
+ "verifiedAt": "2026-09-10",
945
+ "verification": "documentation-only",
946
+ "setup": {
947
+ "mode": "oauth",
948
+ "instructions": "An account admin must enable MCP and choose permissions. This endpoint serves US-region accounts."
949
+ },
950
+ "logo": "customer-io-mcp.png"
951
+ }
952
+ },
953
+ {
954
+ "name": "fireflies",
955
+ "source": {
956
+ "source": "local",
957
+ "path": "plugins/mcp-catalog/fireflies",
958
+ "version": "1.0.2"
959
+ },
960
+ "description": "Search meeting transcripts, summaries, and conversation insights.",
961
+ "homepage": "https://docs.fireflies.ai/getting-started/mcp-configuration",
962
+ "license": "MIT",
963
+ "integration": {
964
+ "kind": "mcp",
965
+ "displayName": "Fireflies",
966
+ "documentationUrl": "https://docs.fireflies.ai/getting-started/mcp-configuration",
967
+ "verifiedAt": "2026-09-10",
968
+ "verification": "documentation-only",
969
+ "setup": {
970
+ "mode": "oauth",
971
+ "instructions": "Some tools are experimental or require an Enterprise plan."
972
+ },
973
+ "logo": "fireflies-mcp.png"
974
+ }
975
+ },
976
+ {
977
+ "name": "gamma",
978
+ "source": {
979
+ "source": "local",
980
+ "path": "plugins/mcp-catalog/gamma",
981
+ "version": "1.0.2"
982
+ },
983
+ "description": "Create presentations, documents, and social posts.",
984
+ "homepage": "https://developers.gamma.app/mcp/gamma-mcp-server.md",
985
+ "license": "MIT",
986
+ "integration": {
987
+ "kind": "mcp",
988
+ "displayName": "Gamma",
989
+ "documentationUrl": "https://developers.gamma.app/mcp/gamma-mcp-server.md",
990
+ "verifiedAt": "2026-09-10",
991
+ "verification": "documentation-only",
992
+ "setup": {
993
+ "mode": "oauth",
994
+ "instructions": "Requires a Gamma account. Generations consume account credits."
995
+ },
996
+ "logo": "gamma-mcp.png"
997
+ }
998
+ },
999
+ {
1000
+ "name": "guru",
1001
+ "source": {
1002
+ "source": "local",
1003
+ "path": "plugins/mcp-catalog/guru",
1004
+ "version": "1.0.2"
1005
+ },
1006
+ "description": "Search trusted company knowledge and source documents.",
1007
+ "homepage": "https://developer.getguru.com/docs/guru-mcp-server-overview",
1008
+ "license": "MIT",
1009
+ "integration": {
1010
+ "kind": "mcp",
1011
+ "displayName": "Guru",
1012
+ "documentationUrl": "https://developer.getguru.com/docs/guru-mcp-server-overview",
1013
+ "verifiedAt": "2026-09-10",
1014
+ "verification": "documentation-only",
1015
+ "setup": {
1016
+ "mode": "oauth",
1017
+ "instructions": "Sign in to the Guru workspace you want to search."
1018
+ },
1019
+ "logo": "guru-mcp.png"
1020
+ }
1021
+ },
1022
+ {
1023
+ "name": "interactive-brokers",
1024
+ "source": {
1025
+ "source": "local",
1026
+ "path": "plugins/mcp-catalog/interactive-brokers",
1027
+ "version": "1.0.1"
1028
+ },
1029
+ "description": "Review portfolios, market data, and brokerage account activity.",
1030
+ "homepage": "https://www.interactivebrokers.com/en/trading/ai-integrations.php",
1031
+ "license": "MIT",
1032
+ "integration": {
1033
+ "kind": "mcp",
1034
+ "displayName": "Interactive Brokers",
1035
+ "documentationUrl": "https://www.interactivebrokers.com/en/trading/ai-integrations.php",
1036
+ "verifiedAt": "2026-09-10",
1037
+ "verification": "documentation-only",
1038
+ "setup": {
1039
+ "mode": "oauth",
1040
+ "instructions": "Authorize one Interactive Brokers account. This integration is unavailable to customers in India or Japan."
1041
+ },
1042
+ "logo": "interactive-brokers-mcp.png"
1043
+ }
1044
+ },
1045
+ {
1046
+ "name": "intercom",
1047
+ "source": {
1048
+ "source": "local",
1049
+ "path": "plugins/mcp-catalog/intercom",
1050
+ "version": "1.0.2"
1051
+ },
1052
+ "description": "Search conversations, contacts, tickets, and help center content.",
1053
+ "homepage": "https://developers.intercom.com/docs/guides/mcp",
1054
+ "license": "MIT",
1055
+ "integration": {
1056
+ "kind": "mcp",
1057
+ "displayName": "Intercom",
1058
+ "documentationUrl": "https://developers.intercom.com/docs/guides/mcp",
1059
+ "verifiedAt": "2026-09-10",
1060
+ "verification": "documentation-only",
1061
+ "setup": {
1062
+ "mode": "oauth",
1063
+ "instructions": "This endpoint serves US-hosted Intercom workspaces. Australian workspaces are not supported."
1064
+ },
1065
+ "logo": "intercom-mcp.png"
1066
+ }
1067
+ },
1068
+ {
1069
+ "name": "jotform",
1070
+ "source": {
1071
+ "source": "local",
1072
+ "path": "plugins/mcp-catalog/jotform",
1073
+ "version": "1.0.1"
1074
+ },
1075
+ "description": "Find forms, submissions, reports, and workspace data.",
1076
+ "homepage": "https://www.jotform.com/mcp/",
1077
+ "license": "MIT",
1078
+ "integration": {
1079
+ "kind": "mcp",
1080
+ "displayName": "Jotform",
1081
+ "documentationUrl": "https://www.jotform.com/mcp/",
1082
+ "verifiedAt": "2026-09-10",
1083
+ "verification": "documentation-only",
1084
+ "setup": {
1085
+ "mode": "oauth",
1086
+ "instructions": "A workspace admin must install the Jotform MCP app before individual authorization."
1087
+ },
1088
+ "logo": "jotform-mcp.png"
1089
+ }
1090
+ },
1091
+ {
1092
+ "name": "juicebox",
1093
+ "source": {
1094
+ "source": "local",
1095
+ "path": "plugins/mcp-catalog/juicebox",
1096
+ "version": "1.0.1"
1097
+ },
1098
+ "description": "Search talent profiles and market intelligence.",
1099
+ "homepage": "https://docs.juicebox.ai/juicebox-mcp",
1100
+ "license": "MIT",
1101
+ "integration": {
1102
+ "kind": "mcp",
1103
+ "displayName": "Juicebox",
1104
+ "documentationUrl": "https://docs.juicebox.ai/juicebox-mcp",
1105
+ "verifiedAt": "2026-09-10",
1106
+ "verification": "documentation-only",
1107
+ "setup": {
1108
+ "mode": "oauth",
1109
+ "instructions": "Requires a paid Juicebox plan. Some exports count against plan limits."
1110
+ },
1111
+ "logo": "juicebox-mcp.png"
1112
+ }
1113
+ },
1114
+ {
1115
+ "name": "klaviyo",
1116
+ "source": {
1117
+ "source": "local",
1118
+ "path": "plugins/mcp-catalog/klaviyo",
1119
+ "version": "1.0.2"
1120
+ },
1121
+ "description": "Analyze campaigns, profiles, segments, and marketing performance.",
1122
+ "homepage": "https://developers.klaviyo.com/en/docs/klaviyo_mcp_server",
1123
+ "license": "MIT",
1124
+ "integration": {
1125
+ "kind": "mcp",
1126
+ "displayName": "Klaviyo",
1127
+ "documentationUrl": "https://developers.klaviyo.com/en/docs/klaviyo_mcp_server",
1128
+ "verifiedAt": "2026-09-10",
1129
+ "verification": "documentation-only",
1130
+ "setup": {
1131
+ "mode": "oauth",
1132
+ "instructions": "Requires an Owner, Admin, or Manager role in Klaviyo."
1133
+ },
1134
+ "logo": "klaviyo-mcp.png"
1135
+ }
1136
+ },
1137
+ {
1138
+ "name": "mailerlite",
1139
+ "source": {
1140
+ "source": "local",
1141
+ "path": "plugins/mcp-catalog/mailerlite",
1142
+ "version": "1.0.2"
1143
+ },
1144
+ "description": "Manage subscribers, groups, campaigns, and automations.",
1145
+ "homepage": "https://developers.mailerlite.com/mcp",
1146
+ "license": "MIT",
1147
+ "integration": {
1148
+ "kind": "mcp",
1149
+ "displayName": "MailerLite",
1150
+ "documentationUrl": "https://developers.mailerlite.com/mcp",
1151
+ "verifiedAt": "2026-09-10",
1152
+ "verification": "documentation-only",
1153
+ "setup": {
1154
+ "mode": "oauth",
1155
+ "instructions": "Authorize the MailerLite account you want to use."
1156
+ },
1157
+ "logo": "mailerlite-mcp.png"
1158
+ }
1159
+ },
1160
+ {
1161
+ "name": "meltwater",
1162
+ "source": {
1163
+ "source": "local",
1164
+ "path": "plugins/mcp-catalog/meltwater",
1165
+ "version": "1.0.2"
1166
+ },
1167
+ "description": "Research media coverage, social conversations, and brand insights.",
1168
+ "homepage": "https://developer.meltwater.com/guides/meltwater-mcp/overview/",
1169
+ "license": "MIT",
1170
+ "integration": {
1171
+ "kind": "mcp",
1172
+ "displayName": "Meltwater",
1173
+ "documentationUrl": "https://developer.meltwater.com/guides/meltwater-mcp/overview/",
1174
+ "verifiedAt": "2026-09-10",
1175
+ "verification": "documentation-only",
1176
+ "setup": {
1177
+ "mode": "oauth",
1178
+ "instructions": "Your Meltwater subscription must include the MCP package."
1179
+ },
1180
+ "logo": "meltwater-mcp.png"
1181
+ }
1182
+ },
1183
+ {
1184
+ "name": "mem",
1185
+ "source": {
1186
+ "source": "local",
1187
+ "path": "plugins/mcp-catalog/mem",
1188
+ "version": "1.0.1"
1189
+ },
1190
+ "description": "Search, create, and organize notes in Mem.",
1191
+ "homepage": "https://docs.mem.ai/mcp/overview",
1192
+ "license": "MIT",
1193
+ "integration": {
1194
+ "kind": "mcp",
1195
+ "displayName": "Mem",
1196
+ "documentationUrl": "https://docs.mem.ai/mcp/overview",
1197
+ "verifiedAt": "2026-09-10",
1198
+ "verification": "documentation-only",
1199
+ "setup": {
1200
+ "mode": "oauth",
1201
+ "instructions": "Authorize the Mem account and content you want to use."
1202
+ },
1203
+ "logo": "mem-mcp.png"
1204
+ }
1205
+ },
1206
+ {
1207
+ "name": "mercury",
1208
+ "source": {
1209
+ "source": "local",
1210
+ "path": "plugins/mcp-catalog/mercury",
1211
+ "version": "1.0.2"
1212
+ },
1213
+ "description": "Review accounts, transactions, payments, and company finances.",
1214
+ "homepage": "https://docs.mercury.com/docs/what-is-mercury-mcp",
1215
+ "license": "MIT",
1216
+ "integration": {
1217
+ "kind": "mcp",
1218
+ "displayName": "Mercury",
1219
+ "documentationUrl": "https://docs.mercury.com/docs/what-is-mercury-mcp",
1220
+ "verifiedAt": "2026-09-10",
1221
+ "verification": "documentation-only",
1222
+ "setup": {
1223
+ "mode": "oauth",
1224
+ "instructions": "Sign in to the Mercury organization whose financial data you want to use."
1225
+ },
1226
+ "logo": "mercury-mcp.png"
1227
+ }
1228
+ },
1229
+ {
1230
+ "name": "navan",
1231
+ "source": {
1232
+ "source": "local",
1233
+ "path": "plugins/mcp-catalog/navan",
1234
+ "version": "1.0.2"
1235
+ },
1236
+ "description": "Search business travel, expenses, and company policy information.",
1237
+ "homepage": "https://developer.navan.com/mcp/",
1238
+ "license": "MIT",
1239
+ "integration": {
1240
+ "kind": "mcp",
1241
+ "displayName": "Navan",
1242
+ "documentationUrl": "https://developer.navan.com/mcp/",
1243
+ "verifiedAt": "2026-09-10",
1244
+ "verification": "documentation-only",
1245
+ "setup": {
1246
+ "mode": "oauth",
1247
+ "instructions": "A Navan admin must enable MCP for your organization."
1248
+ },
1249
+ "logo": "navan-mcp.png"
1250
+ }
1251
+ },
1252
+ {
1253
+ "name": "otter",
1254
+ "source": {
1255
+ "source": "local",
1256
+ "path": "plugins/mcp-catalog/otter",
1257
+ "version": "1.0.2"
1258
+ },
1259
+ "description": "Search meeting conversations and transcripts.",
1260
+ "homepage": "https://help.otter.ai/hc/en-us/articles/35287607569687-Otter-MCP-Server",
1261
+ "license": "MIT",
1262
+ "integration": {
1263
+ "kind": "mcp",
1264
+ "displayName": "Otter.ai",
1265
+ "documentationUrl": "https://help.otter.ai/hc/en-us/articles/35287607569687-Otter-MCP-Server",
1266
+ "verifiedAt": "2026-09-10",
1267
+ "verification": "documentation-only",
1268
+ "setup": {
1269
+ "mode": "oauth",
1270
+ "instructions": "Sign in with the Otter account whose conversations you want to use."
1271
+ },
1272
+ "logo": "otter-mcp.png"
1273
+ }
1274
+ },
1275
+ {
1276
+ "name": "profound",
1277
+ "source": {
1278
+ "source": "local",
1279
+ "path": "plugins/mcp-catalog/profound",
1280
+ "version": "1.0.2"
1281
+ },
1282
+ "description": "Analyze brand visibility and performance in AI search.",
1283
+ "homepage": "https://docs.tryprofound.com/mcp/overview",
1284
+ "license": "MIT",
1285
+ "integration": {
1286
+ "kind": "mcp",
1287
+ "displayName": "Profound",
1288
+ "documentationUrl": "https://docs.tryprofound.com/mcp/overview",
1289
+ "verifiedAt": "2026-09-10",
1290
+ "verification": "documentation-only",
1291
+ "setup": {
1292
+ "mode": "oauth",
1293
+ "instructions": "Authorize the Profound workspace you want to analyze."
1294
+ },
1295
+ "logo": "profound-mcp.png"
1296
+ }
1297
+ },
1298
+ {
1299
+ "name": "readwise",
1300
+ "source": {
1301
+ "source": "local",
1302
+ "path": "plugins/mcp-catalog/readwise",
1303
+ "version": "1.0.2"
1304
+ },
1305
+ "description": "Search highlights, documents, and reading notes.",
1306
+ "homepage": "https://docs.readwise.io/tools/mcp",
1307
+ "license": "MIT",
1308
+ "integration": {
1309
+ "kind": "mcp",
1310
+ "displayName": "Readwise",
1311
+ "documentationUrl": "https://docs.readwise.io/tools/mcp",
1312
+ "verifiedAt": "2026-09-10",
1313
+ "verification": "documentation-only",
1314
+ "setup": {
1315
+ "mode": "oauth",
1316
+ "instructions": "Authorize the Readwise library you want to use."
1317
+ },
1318
+ "logo": "readwise-mcp.png"
1319
+ }
1320
+ },
1321
+ {
1322
+ "name": "semrush",
1323
+ "source": {
1324
+ "source": "local",
1325
+ "path": "plugins/mcp-catalog/semrush",
1326
+ "version": "1.0.2"
1327
+ },
1328
+ "description": "Research keywords, competitors, backlinks, and site performance.",
1329
+ "homepage": "https://developer.semrush.com/api/v4/introduction/semrush-mcp/",
1330
+ "license": "MIT",
1331
+ "integration": {
1332
+ "kind": "mcp",
1333
+ "displayName": "Semrush",
1334
+ "documentationUrl": "https://developer.semrush.com/api/v4/introduction/semrush-mcp/",
1335
+ "verifiedAt": "2026-09-10",
1336
+ "verification": "documentation-only",
1337
+ "setup": {
1338
+ "mode": "oauth",
1339
+ "instructions": "Your Semrush plan must include API units. Requests consume those units."
1340
+ },
1341
+ "logo": "semrush-mcp.png"
1342
+ }
1343
+ },
1344
+ {
1345
+ "name": "todoist",
1346
+ "source": {
1347
+ "source": "local",
1348
+ "path": "plugins/mcp-catalog/todoist",
1349
+ "version": "1.0.2"
1350
+ },
1351
+ "description": "Find and manage tasks, projects, sections, and comments.",
1352
+ "homepage": "https://github.com/Doist/todoist-mcp",
1353
+ "license": "MIT",
1354
+ "integration": {
1355
+ "kind": "mcp",
1356
+ "displayName": "Todoist",
1357
+ "documentationUrl": "https://github.com/Doist/todoist-mcp",
1358
+ "verifiedAt": "2026-09-10",
1359
+ "verification": "documentation-only",
1360
+ "setup": {
1361
+ "mode": "oauth",
1362
+ "instructions": "Authorize the Todoist account whose tasks and projects you want to use."
1363
+ },
1364
+ "logo": "todoist-mcp.png",
1365
+ "oauthProvider": "todoist"
1366
+ }
1367
+ },
1368
+ {
1369
+ "name": "typeform",
1370
+ "source": {
1371
+ "source": "local",
1372
+ "path": "plugins/mcp-catalog/typeform",
1373
+ "version": "1.0.1"
1374
+ },
1375
+ "description": "Create and analyze forms, responses, and workspaces.",
1376
+ "homepage": "https://developers.typeform.com/developers/get-started/mcp/",
1377
+ "license": "MIT",
1378
+ "integration": {
1379
+ "kind": "mcp",
1380
+ "displayName": "Typeform",
1381
+ "documentationUrl": "https://developers.typeform.com/developers/get-started/mcp/",
1382
+ "verifiedAt": "2026-09-10",
1383
+ "verification": "documentation-only",
1384
+ "setup": {
1385
+ "mode": "oauth",
1386
+ "instructions": "This endpoint serves standard Typeform accounts. EU-hosted accounts use a separate regional endpoint."
1387
+ },
1388
+ "logo": "typeform-mcp.png"
1389
+ }
1390
+ },
1391
+ {
1392
+ "name": "upwork",
1393
+ "source": {
1394
+ "source": "local",
1395
+ "path": "plugins/mcp-catalog/upwork",
1396
+ "version": "1.0.2"
1397
+ },
1398
+ "description": "Search talent and manage hiring work on Upwork.",
1399
+ "homepage": "https://www.upwork.com/ai/mcp",
1400
+ "license": "MIT",
1401
+ "integration": {
1402
+ "kind": "mcp",
1403
+ "displayName": "Upwork",
1404
+ "documentationUrl": "https://www.upwork.com/ai/mcp",
1405
+ "verifiedAt": "2026-09-10",
1406
+ "verification": "documentation-only",
1407
+ "setup": {
1408
+ "mode": "oauth",
1409
+ "instructions": "Sign in to the Upwork account you want to use."
1410
+ },
1411
+ "logo": "upwork-mcp.png"
1412
+ }
1413
+ },
1414
+ {
1415
+ "name": "webull",
1416
+ "source": {
1417
+ "source": "local",
1418
+ "path": "plugins/mcp-catalog/webull",
1419
+ "version": "1.0.1"
1420
+ },
1421
+ "description": "Review brokerage accounts, orders, positions, and market data.",
1422
+ "homepage": "https://developer.webull.com/apis/docs/AI-friendly-Resources/mcp/",
1423
+ "license": "MIT",
1424
+ "integration": {
1425
+ "kind": "mcp",
1426
+ "displayName": "Webull",
1427
+ "documentationUrl": "https://developer.webull.com/apis/docs/AI-friendly-Resources/mcp/",
1428
+ "verifiedAt": "2026-09-10",
1429
+ "verification": "documentation-only",
1430
+ "setup": {
1431
+ "mode": "oauth",
1432
+ "instructions": "Authorize specific accounts and capabilities. Hong Kong accounts use a separate regional endpoint."
1433
+ },
1434
+ "logo": "webull-mcp.png"
1435
+ }
581
1436
  }
582
1437
  ]
583
1438
  }