airbyte-agent-intercom 0.1.44__tar.gz

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 (61) hide show
  1. airbyte_agent_intercom-0.1.44/.gitignore +29 -0
  2. airbyte_agent_intercom-0.1.44/AUTH.md +108 -0
  3. airbyte_agent_intercom-0.1.44/CHANGELOG.md +226 -0
  4. airbyte_agent_intercom-0.1.44/PKG-INFO +151 -0
  5. airbyte_agent_intercom-0.1.44/README.md +118 -0
  6. airbyte_agent_intercom-0.1.44/REFERENCE.md +1316 -0
  7. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/__init__.py +219 -0
  8. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/__init__.py +1 -0
  9. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/__init__.py +82 -0
  10. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/auth_strategies.py +1171 -0
  11. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/auth_template.py +135 -0
  12. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  13. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  14. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/connector_model_loader.py +1120 -0
  15. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/constants.py +78 -0
  16. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/exceptions.py +23 -0
  17. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/executor/__init__.py +31 -0
  18. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/executor/hosted_executor.py +201 -0
  19. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/executor/local_executor.py +1855 -0
  20. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/executor/models.py +202 -0
  21. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/extensions.py +693 -0
  22. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/http/__init__.py +37 -0
  23. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  24. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/http/adapters/httpx_adapter.py +260 -0
  25. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/http/config.py +98 -0
  26. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/http/exceptions.py +119 -0
  27. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/http/protocols.py +114 -0
  28. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/http/response.py +104 -0
  29. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/http_client.py +693 -0
  30. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/introspection.py +481 -0
  31. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/logging/__init__.py +11 -0
  32. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/logging/logger.py +273 -0
  33. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/logging/types.py +93 -0
  34. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/observability/__init__.py +11 -0
  35. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/observability/config.py +179 -0
  36. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/observability/models.py +19 -0
  37. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/observability/redactor.py +81 -0
  38. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/observability/session.py +103 -0
  39. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/performance/__init__.py +6 -0
  40. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  41. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/performance/metrics.py +93 -0
  42. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/schema/__init__.py +75 -0
  43. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/schema/base.py +201 -0
  44. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/schema/components.py +244 -0
  45. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/schema/connector.py +120 -0
  46. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/schema/extensions.py +301 -0
  47. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/schema/operations.py +156 -0
  48. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/schema/security.py +236 -0
  49. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/secrets.py +182 -0
  50. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  51. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/telemetry/config.py +32 -0
  52. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/telemetry/events.py +59 -0
  53. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/telemetry/tracker.py +155 -0
  54. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/types.py +270 -0
  55. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/utils.py +60 -0
  56. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/_vendored/connector_sdk/validation.py +848 -0
  57. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/connector.py +1327 -0
  58. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/connector_model.py +4041 -0
  59. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/models.py +952 -0
  60. airbyte_agent_intercom-0.1.44/airbyte_agent_intercom/types.py +1642 -0
  61. airbyte_agent_intercom-0.1.44/pyproject.toml +50 -0
@@ -0,0 +1,29 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .eggs/
9
+
10
+ # Testing
11
+ .pytest_cache/
12
+ .coverage
13
+ htmlcov/
14
+
15
+ # Virtual environments
16
+ .venv/
17
+ venv/
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+ *.swp
23
+
24
+ # OS
25
+ .DS_Store
26
+ Thumbs.db
27
+
28
+ .env
29
+ configured_connectors.yaml
@@ -0,0 +1,108 @@
1
+ # Intercom authentication and configuration
2
+
3
+ This page documents the authentication and configuration options for the Intercom agent connector.
4
+
5
+ ## Authentication
6
+
7
+ ### Open source execution
8
+
9
+ In open source mode, you provide API credentials directly to the connector.
10
+
11
+ #### OAuth
12
+ This authentication method isn't available for this connector.
13
+
14
+ #### Token
15
+
16
+ `credentials` fields you need:
17
+
18
+ | Field Name | Type | Required | Description |
19
+ |------------|------|----------|-------------|
20
+ | `access_token` | `str` | Yes | Your Intercom API Access Token |
21
+
22
+ Example request:
23
+
24
+ ```python
25
+ from airbyte_agent_intercom import IntercomConnector
26
+ from airbyte_agent_intercom.models import IntercomAuthConfig
27
+
28
+ connector = IntercomConnector(
29
+ auth_config=IntercomAuthConfig(
30
+ access_token="<Your Intercom API Access Token>"
31
+ )
32
+ )
33
+ ```
34
+
35
+ ### Hosted execution
36
+
37
+ In hosted mode, you first create a connector via the Airbyte API (providing your OAuth or Token credentials), then execute operations using either the Python SDK or API. If you need a step-by-step guide, see the [hosted execution tutorial](https://docs.airbyte.com/ai-agents/quickstarts/tutorial-hosted).
38
+
39
+ #### OAuth
40
+ This authentication method isn't available for this connector.
41
+
42
+ #### Token
43
+ Create a connector with Token credentials.
44
+
45
+
46
+ `credentials` fields you need:
47
+
48
+ | Field Name | Type | Required | Description |
49
+ |------------|------|----------|-------------|
50
+ | `access_token` | `str` | Yes | Your Intercom API Access Token |
51
+
52
+ `replication_config` fields you need:
53
+
54
+ | Field Name | Type | Required | Description |
55
+ |------------|------|----------|-------------|
56
+ | `start_date` | `str (date-time)` | Yes | UTC date and time in the format YYYY-MM-DDTHH:mm:ssZ from which to start replicating data. |
57
+
58
+ Example request:
59
+
60
+
61
+ ```bash
62
+ curl -X POST "https://api.airbyte.ai/v1/integrations/connectors" \
63
+ -H "Authorization: Bearer <SCOPED_TOKEN>" \
64
+ -H "Content-Type: application/json" \
65
+ -d '{
66
+ "external_user_id": "<EXTERNAL_USER_ID>",
67
+ "connector_type": "Intercom",
68
+ "name": "My Intercom Connector",
69
+ "credentials": {
70
+ "access_token": "<Your Intercom API Access Token>"
71
+ },
72
+ "replication_config": {
73
+ "start_date": "<UTC date and time in the format YYYY-MM-DDTHH:mm:ssZ from which to start replicating data.>"
74
+ }
75
+ }'
76
+ ```
77
+
78
+ #### Execution
79
+
80
+ After creating the connector, execute operations using either the Python SDK or API.
81
+
82
+ **Python SDK**
83
+
84
+ ```python
85
+ from airbyte_agent_intercom import IntercomConnector
86
+
87
+ connector = IntercomConnector(
88
+ external_user_id="<your_external_user_id>",
89
+ airbyte_client_id="<your-client-id>",
90
+ airbyte_client_secret="<your-client-secret>"
91
+ )
92
+
93
+ @agent.tool_plain # assumes you're using Pydantic AI
94
+ @IntercomConnector.tool_utils
95
+ async def intercom_execute(entity: str, action: str, params: dict | None = None):
96
+ return await connector.execute(entity, action, params or {})
97
+ ```
98
+
99
+ **API**
100
+
101
+ ```bash
102
+ curl -X POST 'https://api.airbyte.ai/api/v1/connectors/sources/<connector_id>/execute' \
103
+ -H 'Authorization: Bearer <SCOPED_TOKEN>' \
104
+ -H 'Content-Type: application/json' \
105
+ -d '{"entity": "<entity>", "action": "<action>", "params": {}}'
106
+ ```
107
+
108
+
@@ -0,0 +1,226 @@
1
+ # Intercom changelog
2
+
3
+ ## [0.1.44] - 2026-01-30
4
+ - Updated connector definition (YAML version 0.1.5)
5
+ - Source commit: 5b20f488
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.1.43] - 2026-01-30
9
+ - Updated connector definition (YAML version 0.1.5)
10
+ - Source commit: a3729d85
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.1.42] - 2026-01-29
14
+ - Updated connector definition (YAML version 0.1.5)
15
+ - Source commit: 43200eed
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.1.41] - 2026-01-29
19
+ - Updated connector definition (YAML version 0.1.5)
20
+ - Source commit: c718c683
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.1.40] - 2026-01-28
24
+ - Updated connector definition (YAML version 0.1.5)
25
+ - Source commit: 97007bbd
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.1.39] - 2026-01-28
29
+ - Updated connector definition (YAML version 0.1.5)
30
+ - Source commit: f6c6fca2
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.1.38] - 2026-01-28
34
+ - Updated connector definition (YAML version 0.1.5)
35
+ - Source commit: 9aef9bd2
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.1.37] - 2026-01-28
39
+ - Updated connector definition (YAML version 0.1.4)
40
+ - Source commit: 71f48c10
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.1.36] - 2026-01-27
44
+ - Updated connector definition (YAML version 0.1.4)
45
+ - Source commit: 0f5e1914
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.1.35] - 2026-01-27
49
+ - Updated connector definition (YAML version 0.1.4)
50
+ - Source commit: a01f6b16
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.1.34] - 2026-01-27
54
+ - Updated connector definition (YAML version 0.1.4)
55
+ - Source commit: c9b05509
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.1.33] - 2026-01-27
59
+ - Updated connector definition (YAML version 0.1.3)
60
+ - Source commit: 4bded58d
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.1.32] - 2026-01-26
64
+ - Updated connector definition (YAML version 0.1.3)
65
+ - Source commit: 74809153
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.1.31] - 2026-01-26
69
+ - Updated connector definition (YAML version 0.1.3)
70
+ - Source commit: b73c71e0
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.1.30] - 2026-01-24
74
+ - Updated connector definition (YAML version 0.1.3)
75
+ - Source commit: 609c1d86
76
+ - SDK version: 0.1.0
77
+
78
+ ## [0.1.29] - 2026-01-23
79
+ - Updated connector definition (YAML version 0.1.3)
80
+ - Source commit: 32c5ef46
81
+ - SDK version: 0.1.0
82
+
83
+ ## [0.1.28] - 2026-01-23
84
+ - Updated connector definition (YAML version 0.1.2)
85
+ - Source commit: 049f6ad5
86
+ - SDK version: 0.1.0
87
+
88
+ ## [0.1.27] - 2026-01-23
89
+ - Updated connector definition (YAML version 0.1.1)
90
+ - Source commit: 416466da
91
+ - SDK version: 0.1.0
92
+
93
+ ## [0.1.26] - 2026-01-23
94
+ - Updated connector definition (YAML version 0.1.1)
95
+ - Source commit: f17cdd8c
96
+ - SDK version: 0.1.0
97
+
98
+ ## [0.1.25] - 2026-01-22
99
+ - Updated connector definition (YAML version 0.1.1)
100
+ - Source commit: 49e6dfe9
101
+ - SDK version: 0.1.0
102
+
103
+ ## [0.1.24] - 2026-01-22
104
+ - Updated connector definition (YAML version 0.1.1)
105
+ - Source commit: b27328e2
106
+ - SDK version: 0.1.0
107
+
108
+ ## [0.1.23] - 2026-01-22
109
+ - Updated connector definition (YAML version 0.1.1)
110
+ - Source commit: 1da193dd
111
+ - SDK version: 0.1.0
112
+
113
+ ## [0.1.22] - 2026-01-22
114
+ - Updated connector definition (YAML version 0.1.1)
115
+ - Source commit: c713ec48
116
+ - SDK version: 0.1.0
117
+
118
+ ## [0.1.21] - 2026-01-21
119
+ - Updated connector definition (YAML version 0.1.1)
120
+ - Source commit: c7dab975
121
+ - SDK version: 0.1.0
122
+
123
+ ## [0.1.20] - 2026-01-19
124
+ - Updated connector definition (YAML version 0.1.1)
125
+ - Source commit: 529cebb7
126
+ - SDK version: 0.1.0
127
+
128
+ ## [0.1.19] - 2026-01-16
129
+ - Updated connector definition (YAML version 0.1.1)
130
+ - Source commit: a50c8f71
131
+ - SDK version: 0.1.0
132
+
133
+ ## [0.1.18] - 2026-01-16
134
+ - Updated connector definition (YAML version 0.1.1)
135
+ - Source commit: 49673b7b
136
+ - SDK version: 0.1.0
137
+
138
+ ## [0.1.17] - 2026-01-16
139
+ - Updated connector definition (YAML version 0.1.1)
140
+ - Source commit: ca5acdda
141
+ - SDK version: 0.1.0
142
+
143
+ ## [0.1.16] - 2026-01-15
144
+ - Updated connector definition (YAML version 0.1.1)
145
+ - Source commit: fa9a3b02
146
+ - SDK version: 0.1.0
147
+
148
+ ## [0.1.15] - 2026-01-15
149
+ - Updated connector definition (YAML version 0.1.1)
150
+ - Source commit: 61a2e822
151
+ - SDK version: 0.1.0
152
+
153
+ ## [0.1.14] - 2026-01-15
154
+ - Updated connector definition (YAML version 0.1.1)
155
+ - Source commit: 35211193
156
+ - SDK version: 0.1.0
157
+
158
+ ## [0.1.13] - 2026-01-15
159
+ - Updated connector definition (YAML version 0.1.1)
160
+ - Source commit: 20b3afd9
161
+ - SDK version: 0.1.0
162
+
163
+ ## [0.1.12] - 2026-01-15
164
+ - Updated connector definition (YAML version 0.1.1)
165
+ - Source commit: b7138b41
166
+ - SDK version: 0.1.0
167
+
168
+ ## [0.1.11] - 2026-01-15
169
+ - Updated connector definition (YAML version 0.1.1)
170
+ - Source commit: 10173eb1
171
+ - SDK version: 0.1.0
172
+
173
+ ## [0.1.10] - 2026-01-15
174
+ - Updated connector definition (YAML version 0.1.1)
175
+ - Source commit: a23d9e7a
176
+ - SDK version: 0.1.0
177
+
178
+ ## [0.1.9] - 2026-01-14
179
+ - Updated connector definition (YAML version 0.1.1)
180
+ - Source commit: 7ef09816
181
+ - SDK version: 0.1.0
182
+
183
+ ## [0.1.8] - 2026-01-14
184
+ - Updated connector definition (YAML version 0.1.1)
185
+ - Source commit: e6285db5
186
+ - SDK version: 0.1.0
187
+
188
+ ## [0.1.7] - 2026-01-14
189
+ - Updated connector definition (YAML version 0.1.1)
190
+ - Source commit: 31de238d
191
+ - SDK version: 0.1.0
192
+
193
+ ## [0.1.6] - 2026-01-13
194
+ - Updated connector definition (YAML version 0.1.1)
195
+ - Source commit: e80a226e
196
+ - SDK version: 0.1.0
197
+
198
+ ## [0.1.5] - 2026-01-13
199
+ - Updated connector definition (YAML version 0.1.1)
200
+ - Source commit: 78b1be67
201
+ - SDK version: 0.1.0
202
+
203
+ ## [0.1.4] - 2026-01-11
204
+ - Updated connector definition (YAML version 0.1.1)
205
+ - Source commit: e519b73d
206
+ - SDK version: 0.1.0
207
+
208
+ ## [0.1.3] - 2026-01-09
209
+ - Updated connector definition (YAML version 0.1.1)
210
+ - Source commit: 3c7bfdfd
211
+ - SDK version: 0.1.0
212
+
213
+ ## [0.1.2] - 2026-01-09
214
+ - Updated connector definition (YAML version 0.1.1)
215
+ - Source commit: 3bcb33e8
216
+ - SDK version: 0.1.0
217
+
218
+ ## [0.1.1] - 2026-01-09
219
+ - Updated connector definition (YAML version 0.1.1)
220
+ - Source commit: da9b741b
221
+ - SDK version: 0.1.0
222
+
223
+ ## [0.1.0] - 2026-01-08
224
+ - Updated connector definition (YAML version 0.1.1)
225
+ - Source commit: 463eef2e
226
+ - SDK version: 0.1.0
@@ -0,0 +1,151 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-intercom
3
+ Version: 0.1.44
4
+ Summary: Airbyte Intercom Connector for AI platforms
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
6
+ Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-agent-connectors
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-agent-connectors/issues
9
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: agent,ai,airbyte,api,connector,data-integration,intercom,llm,mcp
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.13
22
+ Requires-Dist: httpx>=0.24.0
23
+ Requires-Dist: jinja2>=3.0.0
24
+ Requires-Dist: jsonpath-ng>=1.6.1
25
+ Requires-Dist: jsonref>=1.1.0
26
+ Requires-Dist: opentelemetry-api>=1.37.0
27
+ Requires-Dist: opentelemetry-sdk>=1.37.0
28
+ Requires-Dist: pydantic>=2.0.0
29
+ Requires-Dist: python-dotenv>=1.0.0
30
+ Requires-Dist: pyyaml>=6.0
31
+ Requires-Dist: segment-analytics-python>=2.2.0
32
+ Description-Content-Type: text/markdown
33
+
34
+ # Intercom agent connector
35
+
36
+ Intercom is a customer messaging platform that enables businesses to communicate with
37
+ customers through chat, email, and in-app messaging. This connector provides read-only
38
+ access to core Intercom entities including contacts, conversations, companies, teams,
39
+ admins, tags, and segments for customer support analytics and insights.
40
+
41
+
42
+ ## Example questions
43
+
44
+ The Intercom connector is optimized to handle prompts like these.
45
+
46
+ - List all contacts in my Intercom workspace
47
+ - Show me conversations from the last week
48
+ - List all companies in Intercom
49
+ - What teams are configured in my workspace?
50
+ - Show me all admins in my Intercom account
51
+ - List all tags used in Intercom
52
+ - Get details for contact \{contact_id\}
53
+ - Show me all customer segments
54
+ - Get company details for \{company_id\}
55
+ - List conversations assigned to team \{team_id\}
56
+ - Show me open conversations
57
+ - Get conversation details for \{conversation_id\}
58
+
59
+ ## Unsupported questions
60
+
61
+ The Intercom connector isn't currently able to handle prompts like these.
62
+
63
+ - Create a new contact in Intercom
64
+ - Send a message to a customer
65
+ - Delete a conversation
66
+ - Update company information
67
+ - Assign a conversation to an admin
68
+ - Create a new tag
69
+
70
+ ## Installation
71
+
72
+ ```bash
73
+ uv pip install airbyte-agent-intercom
74
+ ```
75
+
76
+ ## Usage
77
+
78
+ Connectors can run in open source or hosted mode.
79
+
80
+ ### Open source
81
+
82
+ In open source mode, you provide API credentials directly to the connector.
83
+
84
+ ```python
85
+ from airbyte_agent_intercom import IntercomConnector
86
+ from airbyte_agent_intercom.models import IntercomAuthConfig
87
+
88
+ connector = IntercomConnector(
89
+ auth_config=IntercomAuthConfig(
90
+ access_token="<Your Intercom API Access Token>"
91
+ )
92
+ )
93
+
94
+ @agent.tool_plain # assumes you're using Pydantic AI
95
+ @IntercomConnector.tool_utils
96
+ async def intercom_execute(entity: str, action: str, params: dict | None = None):
97
+ return await connector.execute(entity, action, params or {})
98
+ ```
99
+
100
+ ### Hosted
101
+
102
+ In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead.
103
+
104
+ This example assumes you've already authenticated your connector with Airbyte. See [Authentication](AUTH.md) to learn more about authenticating. If you need a step-by-step guide, see the [hosted execution tutorial](https://docs.airbyte.com/ai-agents/quickstarts/tutorial-hosted).
105
+
106
+ ```python
107
+ from airbyte_agent_intercom import IntercomConnector
108
+
109
+ connector = IntercomConnector(
110
+ external_user_id="<your_external_user_id>",
111
+ airbyte_client_id="<your-client-id>",
112
+ airbyte_client_secret="<your-client-secret>"
113
+ )
114
+
115
+ @agent.tool_plain # assumes you're using Pydantic AI
116
+ @IntercomConnector.tool_utils
117
+ async def intercom_execute(entity: str, action: str, params: dict | None = None):
118
+ return await connector.execute(entity, action, params or {})
119
+ ```
120
+
121
+ ## Full documentation
122
+
123
+ ### Entities and actions
124
+
125
+ This connector supports the following entities and actions. For more details, see this connector's [full reference documentation](REFERENCE.md).
126
+
127
+ | Entity | Actions |
128
+ |--------|---------|
129
+ | Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get) |
130
+ | Conversations | [List](./REFERENCE.md#conversations-list), [Get](./REFERENCE.md#conversations-get) |
131
+ | Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get) |
132
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
133
+ | Admins | [List](./REFERENCE.md#admins-list), [Get](./REFERENCE.md#admins-get) |
134
+ | Tags | [List](./REFERENCE.md#tags-list), [Get](./REFERENCE.md#tags-get) |
135
+ | Segments | [List](./REFERENCE.md#segments-list), [Get](./REFERENCE.md#segments-get) |
136
+
137
+
138
+ ### Authentication and configuration
139
+
140
+ For all authentication and configuration options, see the connector's [authentication documentation](AUTH.md).
141
+
142
+ ### Intercom API docs
143
+
144
+ See the official [Intercom API reference](https://developers.intercom.com/docs/references/rest-api/api.intercom.io).
145
+
146
+ ## Version information
147
+
148
+ - **Package version:** 0.1.44
149
+ - **Connector version:** 0.1.5
150
+ - **Generated with Connector SDK commit SHA:** 5b20f488dec0e8f29410823753106603c23a4b65
151
+ - **Changelog:** [View changelog](https://github.com/airbytehq/airbyte-agent-connectors/blob/main/connectors/intercom/CHANGELOG.md)
@@ -0,0 +1,118 @@
1
+ # Intercom agent connector
2
+
3
+ Intercom is a customer messaging platform that enables businesses to communicate with
4
+ customers through chat, email, and in-app messaging. This connector provides read-only
5
+ access to core Intercom entities including contacts, conversations, companies, teams,
6
+ admins, tags, and segments for customer support analytics and insights.
7
+
8
+
9
+ ## Example questions
10
+
11
+ The Intercom connector is optimized to handle prompts like these.
12
+
13
+ - List all contacts in my Intercom workspace
14
+ - Show me conversations from the last week
15
+ - List all companies in Intercom
16
+ - What teams are configured in my workspace?
17
+ - Show me all admins in my Intercom account
18
+ - List all tags used in Intercom
19
+ - Get details for contact \{contact_id\}
20
+ - Show me all customer segments
21
+ - Get company details for \{company_id\}
22
+ - List conversations assigned to team \{team_id\}
23
+ - Show me open conversations
24
+ - Get conversation details for \{conversation_id\}
25
+
26
+ ## Unsupported questions
27
+
28
+ The Intercom connector isn't currently able to handle prompts like these.
29
+
30
+ - Create a new contact in Intercom
31
+ - Send a message to a customer
32
+ - Delete a conversation
33
+ - Update company information
34
+ - Assign a conversation to an admin
35
+ - Create a new tag
36
+
37
+ ## Installation
38
+
39
+ ```bash
40
+ uv pip install airbyte-agent-intercom
41
+ ```
42
+
43
+ ## Usage
44
+
45
+ Connectors can run in open source or hosted mode.
46
+
47
+ ### Open source
48
+
49
+ In open source mode, you provide API credentials directly to the connector.
50
+
51
+ ```python
52
+ from airbyte_agent_intercom import IntercomConnector
53
+ from airbyte_agent_intercom.models import IntercomAuthConfig
54
+
55
+ connector = IntercomConnector(
56
+ auth_config=IntercomAuthConfig(
57
+ access_token="<Your Intercom API Access Token>"
58
+ )
59
+ )
60
+
61
+ @agent.tool_plain # assumes you're using Pydantic AI
62
+ @IntercomConnector.tool_utils
63
+ async def intercom_execute(entity: str, action: str, params: dict | None = None):
64
+ return await connector.execute(entity, action, params or {})
65
+ ```
66
+
67
+ ### Hosted
68
+
69
+ In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead.
70
+
71
+ This example assumes you've already authenticated your connector with Airbyte. See [Authentication](AUTH.md) to learn more about authenticating. If you need a step-by-step guide, see the [hosted execution tutorial](https://docs.airbyte.com/ai-agents/quickstarts/tutorial-hosted).
72
+
73
+ ```python
74
+ from airbyte_agent_intercom import IntercomConnector
75
+
76
+ connector = IntercomConnector(
77
+ external_user_id="<your_external_user_id>",
78
+ airbyte_client_id="<your-client-id>",
79
+ airbyte_client_secret="<your-client-secret>"
80
+ )
81
+
82
+ @agent.tool_plain # assumes you're using Pydantic AI
83
+ @IntercomConnector.tool_utils
84
+ async def intercom_execute(entity: str, action: str, params: dict | None = None):
85
+ return await connector.execute(entity, action, params or {})
86
+ ```
87
+
88
+ ## Full documentation
89
+
90
+ ### Entities and actions
91
+
92
+ This connector supports the following entities and actions. For more details, see this connector's [full reference documentation](REFERENCE.md).
93
+
94
+ | Entity | Actions |
95
+ |--------|---------|
96
+ | Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get) |
97
+ | Conversations | [List](./REFERENCE.md#conversations-list), [Get](./REFERENCE.md#conversations-get) |
98
+ | Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get) |
99
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
100
+ | Admins | [List](./REFERENCE.md#admins-list), [Get](./REFERENCE.md#admins-get) |
101
+ | Tags | [List](./REFERENCE.md#tags-list), [Get](./REFERENCE.md#tags-get) |
102
+ | Segments | [List](./REFERENCE.md#segments-list), [Get](./REFERENCE.md#segments-get) |
103
+
104
+
105
+ ### Authentication and configuration
106
+
107
+ For all authentication and configuration options, see the connector's [authentication documentation](AUTH.md).
108
+
109
+ ### Intercom API docs
110
+
111
+ See the official [Intercom API reference](https://developers.intercom.com/docs/references/rest-api/api.intercom.io).
112
+
113
+ ## Version information
114
+
115
+ - **Package version:** 0.1.44
116
+ - **Connector version:** 0.1.5
117
+ - **Generated with Connector SDK commit SHA:** 5b20f488dec0e8f29410823753106603c23a4b65
118
+ - **Changelog:** [View changelog](https://github.com/airbytehq/airbyte-agent-connectors/blob/main/connectors/intercom/CHANGELOG.md)