chat-agent-toolkit 1.2.32 → 1.2.34

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 (67) hide show
  1. package/dist/research-agent.cjs.js +1 -1
  2. package/dist/research-agent.cjs.js.map +1 -1
  3. package/dist/research-agent.es.js +1 -1
  4. package/dist/research-agent.es.js.map +1 -1
  5. package/package.json +1 -1
  6. package/src/config/config-manager.ts +295 -295
  7. package/src/config/config-types.ts +65 -65
  8. package/src/config/environment-variables.ts +16 -16
  9. package/src/config/index.ts +26 -26
  10. package/src/config/language-models-database.ts +1434 -1434
  11. package/src/config/mcp-server-registry.ts +24 -24
  12. package/src/config/model-registry.ts +271 -271
  13. package/src/config/model-tester.ts +211 -211
  14. package/src/config/model-utils.ts +193 -193
  15. package/src/config/provider-ui-config.ts +196 -196
  16. package/src/connectors/open-connector.json +130 -130
  17. package/src/index.ts +26 -26
  18. package/src/memory/ARCHITECTURE.md +302 -302
  19. package/src/memory/README.md +224 -224
  20. package/src/memory/agent-memory-manager.ts +416 -416
  21. package/src/memory/example.ts +343 -343
  22. package/src/memory/index.ts +47 -47
  23. package/src/memory/mastra-integration.ts +604 -604
  24. package/src/memory/storage/drizzle-storage.ts +236 -236
  25. package/src/memory/storage/in-memory-storage.ts +551 -551
  26. package/src/memory/storage/storage-interface.ts +68 -68
  27. package/src/memory/types.ts +125 -125
  28. package/src/models/types.ts +4 -4
  29. package/src/provider-logos/01-ai.png +0 -0
  30. package/src/provider-logos/anthropic.png +0 -0
  31. package/src/provider-logos/aws-bedrock.png +0 -0
  32. package/src/provider-logos/aws-sagemaker.png +0 -0
  33. package/src/provider-logos/azure-openai-service.png +0 -0
  34. package/src/provider-logos/chatglm.png +0 -0
  35. package/src/provider-logos/cohere.png +0 -0
  36. package/src/provider-logos/gemini.png +0 -0
  37. package/src/provider-logos/groqcloud.png +0 -0
  38. package/src/provider-logos/huggingface.png +0 -0
  39. package/src/provider-logos/jina.png +0 -0
  40. package/src/provider-logos/localai.png +0 -0
  41. package/src/provider-logos/mistral-ai.png +0 -0
  42. package/src/provider-logos/moonshot-ai.png +0 -0
  43. package/src/provider-logos/ollama.png +0 -0
  44. package/src/provider-logos/openai.png +0 -0
  45. package/src/provider-logos/openllm.png +0 -0
  46. package/src/provider-logos/openrouter.png +0 -0
  47. package/src/provider-logos/replicate.png +0 -0
  48. package/src/provider-logos/together-ai.png +0 -0
  49. package/src/provider-logos/tongyi.png +0 -0
  50. package/src/provider-logos/xorbits-inference.png +0 -0
  51. package/src/provider-logos/zhipu-ai.png +0 -0
  52. package/src/tools/index.ts +13 -13
  53. package/src/tools/open-connector-mastra.ts +270 -270
  54. package/src/tools/open-connector-mcp.ts +170 -170
  55. package/src/tools/qwksearch-api-tools.ts +326 -326
  56. package/src/tools/search/doc-utils.ts +139 -139
  57. package/src/tools/search/document.ts +47 -47
  58. package/src/tools/search/index.ts +14 -14
  59. package/src/tools/search/link-summarizer.ts +112 -112
  60. package/src/tools/search/meta-search-types.ts +62 -62
  61. package/src/tools/search/metaSearchAgent.ts +465 -465
  62. package/src/tools/search/search-handlers.ts +97 -97
  63. package/src/tools/search/suggestionGeneratorAgent.ts +56 -56
  64. package/src/types.d.ts +137 -137
  65. package/src/utils/index.ts +2 -2
  66. package/src/utils/markdown-to-html.ts +53 -53
  67. package/src/utils/outputParser.ts +73 -73
@@ -1,196 +1,196 @@
1
- /**
2
- * @module research/models/providers/index
3
- * @description Research library module.
4
- *
5
- * This file provides metadata about providers without importing them directly,
6
- * to avoid circular dependency issues with the config system.
7
- */
8
- import { ModelProviderUISection } from "../types";
9
-
10
- /**
11
- * Gets provider UI configuration without triggering circular dependencies.
12
- * This function uses static metadata instead of importing provider classes.
13
- */
14
- export const getModelProvidersUIConfigSection =
15
- (): ModelProviderUISection[] => {
16
- // Import statically defined metadata instead of loading the providers
17
- // This breaks the circular dependency
18
- return [
19
- {
20
- key: "openai",
21
- name: "OpenAI",
22
- fields: getOpenAIConfigFields(),
23
- },
24
- {
25
- key: "anthropic",
26
- name: "Anthropic",
27
- fields: getAnthropicConfigFields(),
28
- },
29
- {
30
- key: "gemini",
31
- name: "Google Gemini",
32
- fields: getGeminiConfigFields(),
33
- },
34
- {
35
- key: "groq",
36
- name: "Groq",
37
- fields: getGroqConfigFields(),
38
- },
39
- {
40
- key: "deepseek",
41
- name: "DeepSeek",
42
- fields: getDeepSeekConfigFields(),
43
- },
44
- {
45
- key: "nvidia",
46
- name: "NVIDIA",
47
- fields: getNvidiaConfigFields(),
48
- },
49
- {
50
- key: "openrouter",
51
- name: "OpenRouter",
52
- fields: getOpenRouterConfigFields(),
53
- },
54
- ];
55
- };
56
-
57
- // Static config field definitions to avoid loading provider classes
58
- // These match the providerConfigFields in each provider file
59
- function getOpenAIConfigFields() {
60
- return [
61
- {
62
- type: "password" as const,
63
- name: "API Key",
64
- key: "apiKey",
65
- description: "Your OpenAI API key",
66
- required: true,
67
- placeholder: "OpenAI API Key",
68
- env: "OPENAI_API_KEY",
69
- scope: "server" as const,
70
- },
71
- {
72
- type: "string" as const,
73
- name: "Base URL",
74
- key: "baseURL",
75
- description: "The base URL for the OpenAI API",
76
- required: true,
77
- placeholder: "OpenAI Base URL",
78
- default: "https://api.openai.com/v1",
79
- env: "OPENAI_BASE_URL",
80
- scope: "server" as const,
81
- },
82
- ];
83
- }
84
-
85
-
86
- function getAnthropicConfigFields() {
87
- return [
88
- {
89
- type: "password" as const,
90
- name: "API Key",
91
- key: "apiKey",
92
- description: "Your Anthropic API key",
93
- required: true,
94
- placeholder: "Anthropic API Key",
95
- env: "ANTHROPIC_API_KEY",
96
- scope: "server" as const,
97
- },
98
- ];
99
- }
100
-
101
- function getGeminiConfigFields() {
102
- return [
103
- {
104
- type: "password" as const,
105
- name: "API Key",
106
- key: "apiKey",
107
- description: "Your Google Gemini API key",
108
- required: true,
109
- placeholder: "Google Gemini API Key",
110
- env: "GEMINI_API_KEY",
111
- scope: "server" as const,
112
- },
113
- ];
114
- }
115
-
116
- function getGroqConfigFields() {
117
- return [
118
- {
119
- type: "password" as const,
120
- name: "API Key",
121
- key: "apiKey",
122
- description: "Your Groq API key. Free tier includes fast inference on Llama and Mixtral models - get yours at console.groq.com",
123
- required: true,
124
- placeholder: "gsk_...",
125
- env: "GROQ_API_KEY",
126
- scope: "server" as const,
127
- },
128
- ];
129
- }
130
-
131
- function getDeepSeekConfigFields() {
132
- return [
133
- {
134
- type: "password" as const,
135
- name: "API Key",
136
- key: "apiKey",
137
- description: "Your DeepSeek API key",
138
- required: true,
139
- placeholder: "DeepSeek API Key",
140
- env: "DEEPSEEK_API_KEY",
141
- scope: "server" as const,
142
- },
143
- ];
144
- }
145
-
146
- function getNvidiaConfigFields() {
147
- return [
148
- {
149
- type: "password" as const,
150
- name: "API Key",
151
- key: "apiKey",
152
- description: "Your NVIDIA API key. Free tier includes access to Nemotron, Llama, and other models - get yours at build.nvidia.com",
153
- required: true,
154
- placeholder: "nvapi-...",
155
- env: "NVIDIA_API_KEY",
156
- scope: "server" as const,
157
- },
158
- {
159
- type: "string" as const,
160
- name: "Base URL",
161
- key: "baseURL",
162
- description: "The base URL for NVIDIA's OpenAI-compatible API",
163
- required: true,
164
- placeholder: "https://integrate.api.nvidia.com/v1",
165
- default: "https://integrate.api.nvidia.com/v1",
166
- env: "NVIDIA_BASE_URL",
167
- scope: "server" as const,
168
- },
169
- ];
170
- }
171
-
172
- function getOpenRouterConfigFields() {
173
- return [
174
- {
175
- type: "password" as const,
176
- name: "API Key",
177
- key: "apiKey",
178
- description: "Your OpenRouter API key. Get one free at openrouter.ai - includes free access to Llama 3.3 70B, Nemotron, and other models.",
179
- required: true,
180
- placeholder: "sk-or-v1-...",
181
- env: "OPENROUTER_API_KEY",
182
- scope: "server" as const,
183
- },
184
- {
185
- type: "string" as const,
186
- name: "Base URL",
187
- key: "baseURL",
188
- description: "The base URL for OpenRouter's OpenAI-compatible API",
189
- required: true,
190
- placeholder: "https://openrouter.ai/api/v1",
191
- default: "https://openrouter.ai/api/v1",
192
- env: "OPENROUTER_BASE_URL",
193
- scope: "server" as const,
194
- },
195
- ];
196
- }
1
+ /**
2
+ * @module research/models/providers/index
3
+ * @description Research library module.
4
+ *
5
+ * This file provides metadata about providers without importing them directly,
6
+ * to avoid circular dependency issues with the config system.
7
+ */
8
+ import { ModelProviderUISection } from "../types";
9
+
10
+ /**
11
+ * Gets provider UI configuration without triggering circular dependencies.
12
+ * This function uses static metadata instead of importing provider classes.
13
+ */
14
+ export const getModelProvidersUIConfigSection =
15
+ (): ModelProviderUISection[] => {
16
+ // Import statically defined metadata instead of loading the providers
17
+ // This breaks the circular dependency
18
+ return [
19
+ {
20
+ key: "openai",
21
+ name: "OpenAI",
22
+ fields: getOpenAIConfigFields(),
23
+ },
24
+ {
25
+ key: "anthropic",
26
+ name: "Anthropic",
27
+ fields: getAnthropicConfigFields(),
28
+ },
29
+ {
30
+ key: "gemini",
31
+ name: "Google Gemini",
32
+ fields: getGeminiConfigFields(),
33
+ },
34
+ {
35
+ key: "groq",
36
+ name: "Groq",
37
+ fields: getGroqConfigFields(),
38
+ },
39
+ {
40
+ key: "deepseek",
41
+ name: "DeepSeek",
42
+ fields: getDeepSeekConfigFields(),
43
+ },
44
+ {
45
+ key: "nvidia",
46
+ name: "NVIDIA",
47
+ fields: getNvidiaConfigFields(),
48
+ },
49
+ {
50
+ key: "openrouter",
51
+ name: "OpenRouter",
52
+ fields: getOpenRouterConfigFields(),
53
+ },
54
+ ];
55
+ };
56
+
57
+ // Static config field definitions to avoid loading provider classes
58
+ // These match the providerConfigFields in each provider file
59
+ function getOpenAIConfigFields() {
60
+ return [
61
+ {
62
+ type: "password" as const,
63
+ name: "API Key",
64
+ key: "apiKey",
65
+ description: "Your OpenAI API key",
66
+ required: true,
67
+ placeholder: "OpenAI API Key",
68
+ env: "OPENAI_API_KEY",
69
+ scope: "server" as const,
70
+ },
71
+ {
72
+ type: "string" as const,
73
+ name: "Base URL",
74
+ key: "baseURL",
75
+ description: "The base URL for the OpenAI API",
76
+ required: true,
77
+ placeholder: "OpenAI Base URL",
78
+ default: "https://api.openai.com/v1",
79
+ env: "OPENAI_BASE_URL",
80
+ scope: "server" as const,
81
+ },
82
+ ];
83
+ }
84
+
85
+
86
+ function getAnthropicConfigFields() {
87
+ return [
88
+ {
89
+ type: "password" as const,
90
+ name: "API Key",
91
+ key: "apiKey",
92
+ description: "Your Anthropic API key",
93
+ required: true,
94
+ placeholder: "Anthropic API Key",
95
+ env: "ANTHROPIC_API_KEY",
96
+ scope: "server" as const,
97
+ },
98
+ ];
99
+ }
100
+
101
+ function getGeminiConfigFields() {
102
+ return [
103
+ {
104
+ type: "password" as const,
105
+ name: "API Key",
106
+ key: "apiKey",
107
+ description: "Your Google Gemini API key",
108
+ required: true,
109
+ placeholder: "Google Gemini API Key",
110
+ env: "GEMINI_API_KEY",
111
+ scope: "server" as const,
112
+ },
113
+ ];
114
+ }
115
+
116
+ function getGroqConfigFields() {
117
+ return [
118
+ {
119
+ type: "password" as const,
120
+ name: "API Key",
121
+ key: "apiKey",
122
+ description: "Your Groq API key. Free tier includes fast inference on Llama and Mixtral models - get yours at console.groq.com",
123
+ required: true,
124
+ placeholder: "gsk_...",
125
+ env: "GROQ_API_KEY",
126
+ scope: "server" as const,
127
+ },
128
+ ];
129
+ }
130
+
131
+ function getDeepSeekConfigFields() {
132
+ return [
133
+ {
134
+ type: "password" as const,
135
+ name: "API Key",
136
+ key: "apiKey",
137
+ description: "Your DeepSeek API key",
138
+ required: true,
139
+ placeholder: "DeepSeek API Key",
140
+ env: "DEEPSEEK_API_KEY",
141
+ scope: "server" as const,
142
+ },
143
+ ];
144
+ }
145
+
146
+ function getNvidiaConfigFields() {
147
+ return [
148
+ {
149
+ type: "password" as const,
150
+ name: "API Key",
151
+ key: "apiKey",
152
+ description: "Your NVIDIA API key. Free tier includes access to Nemotron, Llama, and other models - get yours at build.nvidia.com",
153
+ required: true,
154
+ placeholder: "nvapi-...",
155
+ env: "NVIDIA_API_KEY",
156
+ scope: "server" as const,
157
+ },
158
+ {
159
+ type: "string" as const,
160
+ name: "Base URL",
161
+ key: "baseURL",
162
+ description: "The base URL for NVIDIA's OpenAI-compatible API",
163
+ required: true,
164
+ placeholder: "https://integrate.api.nvidia.com/v1",
165
+ default: "https://integrate.api.nvidia.com/v1",
166
+ env: "NVIDIA_BASE_URL",
167
+ scope: "server" as const,
168
+ },
169
+ ];
170
+ }
171
+
172
+ function getOpenRouterConfigFields() {
173
+ return [
174
+ {
175
+ type: "password" as const,
176
+ name: "API Key",
177
+ key: "apiKey",
178
+ description: "Your OpenRouter API key. Get one free at openrouter.ai - includes free access to Llama 3.3 70B, Nemotron, and other models.",
179
+ required: true,
180
+ placeholder: "sk-or-v1-...",
181
+ env: "OPENROUTER_API_KEY",
182
+ scope: "server" as const,
183
+ },
184
+ {
185
+ type: "string" as const,
186
+ name: "Base URL",
187
+ key: "baseURL",
188
+ description: "The base URL for OpenRouter's OpenAI-compatible API",
189
+ required: true,
190
+ placeholder: "https://openrouter.ai/api/v1",
191
+ default: "https://openrouter.ai/api/v1",
192
+ env: "OPENROUTER_BASE_URL",
193
+ scope: "server" as const,
194
+ },
195
+ ];
196
+ }
@@ -1,130 +1,130 @@
1
- {
2
- "connectors": [
3
- {
4
- "name": "Gmail",
5
- "connector_id": "gmail",
6
- "domain": "gmail.com",
7
- "description": "Google's email service. Search inboxes, send/reply/draft messages, manage labels and threads."
8
- },
9
- {
10
- "name": "Google Calendar",
11
- "connector_id": "googlecalendar",
12
- "domain": "calendar.google.com",
13
- "description": "Time management and scheduling. Create/update/list events, manage calendars and attendees."
14
- },
15
- {
16
- "name": "Outlook",
17
- "connector_id": "outlook",
18
- "domain": "outlook.com",
19
- "description": "Microsoft's email and calendaring platform. Manage mail, contacts, calendars and rules."
20
- },
21
- {
22
- "name": "Notion",
23
- "connector_id": "notion",
24
- "domain": "notion.so",
25
- "description": "Workspace for docs, wikis and databases. Search, read, create and update pages and database items."
26
- },
27
- {
28
- "name": "Linear",
29
- "connector_id": "linear",
30
- "domain": "linear.app",
31
- "description": "Issue tracking and project management for software teams. Create, query and update issues, projects and cycles."
32
- },
33
- {
34
- "name": "GitHub",
35
- "connector_id": "github",
36
- "domain": "github.com",
37
- "description": "Code hosting and collaboration. Manage repos, issues, pull requests, branches and reviews."
38
- },
39
- {
40
- "name": "Google Drive",
41
- "connector_id": "googledrive",
42
- "domain": "drive.google.com",
43
- "description": "Cloud file storage. Search, upload, share and manage files, folders and permissions."
44
- },
45
- {
46
- "name": "SharePoint",
47
- "connector_id": "share_point",
48
- "domain": "sharepoint.com",
49
- "description": "Microsoft document management and intranet platform. Search and manage sites, lists and files."
50
- },
51
- {
52
- "name": "OneDrive",
53
- "connector_id": "one_drive",
54
- "domain": "onedrive.live.com",
55
- "description": "Microsoft cloud file storage. Upload, share and manage personal/business files and folders."
56
- },
57
- {
58
- "name": "Slack",
59
- "connector_id": "slack",
60
- "domain": "slack.com",
61
- "description": "Channel-based team messaging. Search history, post messages, manage channels and users."
62
- },
63
- {
64
- "name": "Box",
65
- "connector_id": "box",
66
- "domain": "box.com",
67
- "description": "Enterprise cloud content management. Manage files, folders, sharing and collaboration."
68
- },
69
- {
70
- "name": "Dropbox",
71
- "connector_id": "dropbox",
72
- "domain": "dropbox.com",
73
- "description": "Cloud file syncing and sharing. Upload, list, move and share files across devices."
74
- },
75
- {
76
- "name": "HubSpot",
77
- "connector_id": "hubspot",
78
- "domain": "hubspot.com",
79
- "description": "CRM and marketing platform. Manage contacts, companies, deals, tickets and engagements."
80
- },
81
- {
82
- "name": "Jira",
83
- "connector_id": "jira",
84
- "domain": "atlassian.com",
85
- "description": "Atlassian issue and project tracking. Create/search/update tickets, manage sprints and boards."
86
- },
87
- {
88
- "name": "Confluence",
89
- "connector_id": "confluence",
90
- "domain": "atlassian.com",
91
- "description": "Atlassian knowledge base and team wiki. Search, create and edit pages and spaces."
92
- },
93
- {
94
- "name": "Asana",
95
- "connector_id": "asana",
96
- "domain": "asana.com",
97
- "description": "Task and project management. Create/update tasks, projects, sections and assignments."
98
- },
99
- {
100
- "name": "Databricks",
101
- "connector_id": "databricks",
102
- "domain": "databricks.com",
103
- "description": "Unified analytics and lakehouse platform. Run SQL/jobs, manage clusters, notebooks and Unity Catalog."
104
- },
105
- {
106
- "name": "Snowflake",
107
- "connector_id": "snowflake",
108
- "domain": "snowflake.com",
109
- "description": "Cloud data warehouse. Query structured data, manage warehouses, databases and roles."
110
- },
111
- {
112
- "name": "Salesforce",
113
- "connector_id": "salesforce",
114
- "domain": "salesforce.com",
115
- "description": "Enterprise CRM. Manage leads, accounts, opportunities, cases and custom objects."
116
- },
117
- {
118
- "name": "ServiceNow",
119
- "connector_id": "servicenow",
120
- "domain": "servicenow.com",
121
- "description": "IT service management platform. Manage incidents, change requests, knowledge base and CMDB."
122
- },
123
- {
124
- "name": "Microsoft Teams",
125
- "connector_id": "microsoft_teams",
126
- "domain": "teams.microsoft.com",
127
- "description": "Microsoft collaboration platform. Send messages, manage channels, teams and meetings."
128
- }
129
- ]
130
- }
1
+ {
2
+ "connectors": [
3
+ {
4
+ "name": "Gmail",
5
+ "connector_id": "gmail",
6
+ "domain": "gmail.com",
7
+ "description": "Google's email service. Search inboxes, send/reply/draft messages, manage labels and threads."
8
+ },
9
+ {
10
+ "name": "Google Calendar",
11
+ "connector_id": "googlecalendar",
12
+ "domain": "calendar.google.com",
13
+ "description": "Time management and scheduling. Create/update/list events, manage calendars and attendees."
14
+ },
15
+ {
16
+ "name": "Outlook",
17
+ "connector_id": "outlook",
18
+ "domain": "outlook.com",
19
+ "description": "Microsoft's email and calendaring platform. Manage mail, contacts, calendars and rules."
20
+ },
21
+ {
22
+ "name": "Notion",
23
+ "connector_id": "notion",
24
+ "domain": "notion.so",
25
+ "description": "Workspace for docs, wikis and databases. Search, read, create and update pages and database items."
26
+ },
27
+ {
28
+ "name": "Linear",
29
+ "connector_id": "linear",
30
+ "domain": "linear.app",
31
+ "description": "Issue tracking and project management for software teams. Create, query and update issues, projects and cycles."
32
+ },
33
+ {
34
+ "name": "GitHub",
35
+ "connector_id": "github",
36
+ "domain": "github.com",
37
+ "description": "Code hosting and collaboration. Manage repos, issues, pull requests, branches and reviews."
38
+ },
39
+ {
40
+ "name": "Google Drive",
41
+ "connector_id": "googledrive",
42
+ "domain": "drive.google.com",
43
+ "description": "Cloud file storage. Search, upload, share and manage files, folders and permissions."
44
+ },
45
+ {
46
+ "name": "SharePoint",
47
+ "connector_id": "share_point",
48
+ "domain": "sharepoint.com",
49
+ "description": "Microsoft document management and intranet platform. Search and manage sites, lists and files."
50
+ },
51
+ {
52
+ "name": "OneDrive",
53
+ "connector_id": "one_drive",
54
+ "domain": "onedrive.live.com",
55
+ "description": "Microsoft cloud file storage. Upload, share and manage personal/business files and folders."
56
+ },
57
+ {
58
+ "name": "Slack",
59
+ "connector_id": "slack",
60
+ "domain": "slack.com",
61
+ "description": "Channel-based team messaging. Search history, post messages, manage channels and users."
62
+ },
63
+ {
64
+ "name": "Box",
65
+ "connector_id": "box",
66
+ "domain": "box.com",
67
+ "description": "Enterprise cloud content management. Manage files, folders, sharing and collaboration."
68
+ },
69
+ {
70
+ "name": "Dropbox",
71
+ "connector_id": "dropbox",
72
+ "domain": "dropbox.com",
73
+ "description": "Cloud file syncing and sharing. Upload, list, move and share files across devices."
74
+ },
75
+ {
76
+ "name": "HubSpot",
77
+ "connector_id": "hubspot",
78
+ "domain": "hubspot.com",
79
+ "description": "CRM and marketing platform. Manage contacts, companies, deals, tickets and engagements."
80
+ },
81
+ {
82
+ "name": "Jira",
83
+ "connector_id": "jira",
84
+ "domain": "atlassian.com",
85
+ "description": "Atlassian issue and project tracking. Create/search/update tickets, manage sprints and boards."
86
+ },
87
+ {
88
+ "name": "Confluence",
89
+ "connector_id": "confluence",
90
+ "domain": "atlassian.com",
91
+ "description": "Atlassian knowledge base and team wiki. Search, create and edit pages and spaces."
92
+ },
93
+ {
94
+ "name": "Asana",
95
+ "connector_id": "asana",
96
+ "domain": "asana.com",
97
+ "description": "Task and project management. Create/update tasks, projects, sections and assignments."
98
+ },
99
+ {
100
+ "name": "Databricks",
101
+ "connector_id": "databricks",
102
+ "domain": "databricks.com",
103
+ "description": "Unified analytics and lakehouse platform. Run SQL/jobs, manage clusters, notebooks and Unity Catalog."
104
+ },
105
+ {
106
+ "name": "Snowflake",
107
+ "connector_id": "snowflake",
108
+ "domain": "snowflake.com",
109
+ "description": "Cloud data warehouse. Query structured data, manage warehouses, databases and roles."
110
+ },
111
+ {
112
+ "name": "Salesforce",
113
+ "connector_id": "salesforce",
114
+ "domain": "salesforce.com",
115
+ "description": "Enterprise CRM. Manage leads, accounts, opportunities, cases and custom objects."
116
+ },
117
+ {
118
+ "name": "ServiceNow",
119
+ "connector_id": "servicenow",
120
+ "domain": "servicenow.com",
121
+ "description": "IT service management platform. Manage incidents, change requests, knowledge base and CMDB."
122
+ },
123
+ {
124
+ "name": "Microsoft Teams",
125
+ "connector_id": "microsoft_teams",
126
+ "domain": "teams.microsoft.com",
127
+ "description": "Microsoft collaboration platform. Send messages, manage channels, teams and meetings."
128
+ }
129
+ ]
130
+ }