airbyte-agent-mailchimp 0.1.3__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.
- airbyte_agent_mailchimp-0.1.3/.gitignore +29 -0
- airbyte_agent_mailchimp-0.1.3/CHANGELOG.md +21 -0
- airbyte_agent_mailchimp-0.1.3/PKG-INFO +119 -0
- airbyte_agent_mailchimp-0.1.3/README.md +86 -0
- airbyte_agent_mailchimp-0.1.3/REFERENCE.md +1366 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/__init__.py +217 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/__init__.py +1 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/auth_strategies.py +1120 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/connector_model_loader.py +965 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/executor/local_executor.py +1641 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/extensions.py +693 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/http/response.py +104 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/http_client.py +686 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/introspection.py +262 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/observability/config.py +179 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/observability/session.py +103 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/schema/base.py +164 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/schema/components.py +239 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/schema/connector.py +120 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/schema/extensions.py +230 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/schema/security.py +223 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/events.py +59 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/telemetry/tracker.py +155 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/types.py +245 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/_vendored/connector_sdk/validation.py +822 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/connector.py +1378 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/connector_model.py +4749 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/models.py +956 -0
- airbyte_agent_mailchimp-0.1.3/airbyte_agent_mailchimp/types.py +164 -0
- airbyte_agent_mailchimp-0.1.3/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,21 @@
|
|
|
1
|
+
# Mailchimp changelog
|
|
2
|
+
|
|
3
|
+
## [0.1.3] - 2026-01-15
|
|
4
|
+
- Updated connector definition (YAML version 1.0.1)
|
|
5
|
+
- Source commit: fa9a3b02
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.1.2] - 2026-01-15
|
|
9
|
+
- Updated connector definition (YAML version 1.0.1)
|
|
10
|
+
- Source commit: 61a2e822
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.1.1] - 2026-01-15
|
|
14
|
+
- Updated connector definition (YAML version 1.0.1)
|
|
15
|
+
- Source commit: 35211193
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.1.0] - 2026-01-15
|
|
19
|
+
- Updated connector definition (YAML version 1.0.1)
|
|
20
|
+
- Source commit: 27e30ae3
|
|
21
|
+
- SDK version: 0.1.0
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: airbyte-agent-mailchimp
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: Airbyte Mailchimp 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,llm,mailchimp,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
|
+
# Mailchimp agent connector
|
|
35
|
+
|
|
36
|
+
Mailchimp is an email marketing platform that enables businesses to create, send, and analyze
|
|
37
|
+
email campaigns, manage subscriber lists, and automate marketing workflows. This connector
|
|
38
|
+
provides read access to campaigns, lists, reports, email activity, automations, and more
|
|
39
|
+
for marketing analytics and audience management.
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## Example questions
|
|
43
|
+
|
|
44
|
+
The Mailchimp connector is optimized to handle prompts like these.
|
|
45
|
+
|
|
46
|
+
- Show me all my email campaigns from the last month
|
|
47
|
+
- List all subscribers in my main mailing list
|
|
48
|
+
- What are the open rates for my recent campaigns?
|
|
49
|
+
- Show me the performance report for campaign \{campaign_id\}
|
|
50
|
+
- List all automation workflows in my account
|
|
51
|
+
- Who unsubscribed from list \{list_id\} this week?
|
|
52
|
+
- Show me all segments for my primary audience
|
|
53
|
+
- What tags are applied to my subscribers?
|
|
54
|
+
- List all interest categories for list \{list_id\}
|
|
55
|
+
- Show me email activity for campaign \{campaign_id\}
|
|
56
|
+
- How many subscribers do I have in each list?
|
|
57
|
+
- What are my top performing campaigns by click rate?
|
|
58
|
+
|
|
59
|
+
## Unsupported questions
|
|
60
|
+
|
|
61
|
+
The Mailchimp connector isn't currently able to handle prompts like these.
|
|
62
|
+
|
|
63
|
+
- Create a new email campaign
|
|
64
|
+
- Add a subscriber to my list
|
|
65
|
+
- Delete a campaign
|
|
66
|
+
- Update subscriber information
|
|
67
|
+
- Send a campaign now
|
|
68
|
+
- Create a new automation workflow
|
|
69
|
+
|
|
70
|
+
## Installation
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
uv pip install airbyte-agent-mailchimp
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Usage
|
|
77
|
+
|
|
78
|
+
```python
|
|
79
|
+
from airbyte_agent_mailchimp import MailchimpConnector, MailchimpAuthConfig
|
|
80
|
+
|
|
81
|
+
connector = MailchimpConnector(
|
|
82
|
+
auth_config=MailchimpAuthConfig(
|
|
83
|
+
api_key="...",
|
|
84
|
+
data_center="..."
|
|
85
|
+
)
|
|
86
|
+
)
|
|
87
|
+
result = await connector.campaigns.list()
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
## Full documentation
|
|
92
|
+
|
|
93
|
+
This connector supports the following entities and actions.
|
|
94
|
+
|
|
95
|
+
| Entity | Actions |
|
|
96
|
+
|--------|---------|
|
|
97
|
+
| Campaigns | [List](./REFERENCE.md#campaigns-list), [Get](./REFERENCE.md#campaigns-get) |
|
|
98
|
+
| Lists | [List](./REFERENCE.md#lists-list), [Get](./REFERENCE.md#lists-get) |
|
|
99
|
+
| List Members | [List](./REFERENCE.md#list-members-list), [Get](./REFERENCE.md#list-members-get) |
|
|
100
|
+
| Reports | [List](./REFERENCE.md#reports-list), [Get](./REFERENCE.md#reports-get) |
|
|
101
|
+
| Email Activity | [List](./REFERENCE.md#email-activity-list) |
|
|
102
|
+
| Automations | [List](./REFERENCE.md#automations-list) |
|
|
103
|
+
| Tags | [List](./REFERENCE.md#tags-list) |
|
|
104
|
+
| Interest Categories | [List](./REFERENCE.md#interest-categories-list), [Get](./REFERENCE.md#interest-categories-get) |
|
|
105
|
+
| Interests | [List](./REFERENCE.md#interests-list), [Get](./REFERENCE.md#interests-get) |
|
|
106
|
+
| Segments | [List](./REFERENCE.md#segments-list), [Get](./REFERENCE.md#segments-get) |
|
|
107
|
+
| Segment Members | [List](./REFERENCE.md#segment-members-list) |
|
|
108
|
+
| Unsubscribes | [List](./REFERENCE.md#unsubscribes-list) |
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
112
|
+
|
|
113
|
+
For the service's official API docs, see the [Mailchimp API reference](https://mailchimp.com/developer/marketing/api/).
|
|
114
|
+
|
|
115
|
+
## Version information
|
|
116
|
+
|
|
117
|
+
- **Package version:** 0.1.3
|
|
118
|
+
- **Connector version:** 1.0.1
|
|
119
|
+
- **Generated with Connector SDK commit SHA:** fa9a3b02522ddc7458721472049976e295a0bd78
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# Mailchimp agent connector
|
|
2
|
+
|
|
3
|
+
Mailchimp is an email marketing platform that enables businesses to create, send, and analyze
|
|
4
|
+
email campaigns, manage subscriber lists, and automate marketing workflows. This connector
|
|
5
|
+
provides read access to campaigns, lists, reports, email activity, automations, and more
|
|
6
|
+
for marketing analytics and audience management.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## Example questions
|
|
10
|
+
|
|
11
|
+
The Mailchimp connector is optimized to handle prompts like these.
|
|
12
|
+
|
|
13
|
+
- Show me all my email campaigns from the last month
|
|
14
|
+
- List all subscribers in my main mailing list
|
|
15
|
+
- What are the open rates for my recent campaigns?
|
|
16
|
+
- Show me the performance report for campaign \{campaign_id\}
|
|
17
|
+
- List all automation workflows in my account
|
|
18
|
+
- Who unsubscribed from list \{list_id\} this week?
|
|
19
|
+
- Show me all segments for my primary audience
|
|
20
|
+
- What tags are applied to my subscribers?
|
|
21
|
+
- List all interest categories for list \{list_id\}
|
|
22
|
+
- Show me email activity for campaign \{campaign_id\}
|
|
23
|
+
- How many subscribers do I have in each list?
|
|
24
|
+
- What are my top performing campaigns by click rate?
|
|
25
|
+
|
|
26
|
+
## Unsupported questions
|
|
27
|
+
|
|
28
|
+
The Mailchimp connector isn't currently able to handle prompts like these.
|
|
29
|
+
|
|
30
|
+
- Create a new email campaign
|
|
31
|
+
- Add a subscriber to my list
|
|
32
|
+
- Delete a campaign
|
|
33
|
+
- Update subscriber information
|
|
34
|
+
- Send a campaign now
|
|
35
|
+
- Create a new automation workflow
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
uv pip install airbyte-agent-mailchimp
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Usage
|
|
44
|
+
|
|
45
|
+
```python
|
|
46
|
+
from airbyte_agent_mailchimp import MailchimpConnector, MailchimpAuthConfig
|
|
47
|
+
|
|
48
|
+
connector = MailchimpConnector(
|
|
49
|
+
auth_config=MailchimpAuthConfig(
|
|
50
|
+
api_key="...",
|
|
51
|
+
data_center="..."
|
|
52
|
+
)
|
|
53
|
+
)
|
|
54
|
+
result = await connector.campaigns.list()
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
## Full documentation
|
|
59
|
+
|
|
60
|
+
This connector supports the following entities and actions.
|
|
61
|
+
|
|
62
|
+
| Entity | Actions |
|
|
63
|
+
|--------|---------|
|
|
64
|
+
| Campaigns | [List](./REFERENCE.md#campaigns-list), [Get](./REFERENCE.md#campaigns-get) |
|
|
65
|
+
| Lists | [List](./REFERENCE.md#lists-list), [Get](./REFERENCE.md#lists-get) |
|
|
66
|
+
| List Members | [List](./REFERENCE.md#list-members-list), [Get](./REFERENCE.md#list-members-get) |
|
|
67
|
+
| Reports | [List](./REFERENCE.md#reports-list), [Get](./REFERENCE.md#reports-get) |
|
|
68
|
+
| Email Activity | [List](./REFERENCE.md#email-activity-list) |
|
|
69
|
+
| Automations | [List](./REFERENCE.md#automations-list) |
|
|
70
|
+
| Tags | [List](./REFERENCE.md#tags-list) |
|
|
71
|
+
| Interest Categories | [List](./REFERENCE.md#interest-categories-list), [Get](./REFERENCE.md#interest-categories-get) |
|
|
72
|
+
| Interests | [List](./REFERENCE.md#interests-list), [Get](./REFERENCE.md#interests-get) |
|
|
73
|
+
| Segments | [List](./REFERENCE.md#segments-list), [Get](./REFERENCE.md#segments-get) |
|
|
74
|
+
| Segment Members | [List](./REFERENCE.md#segment-members-list) |
|
|
75
|
+
| Unsubscribes | [List](./REFERENCE.md#unsubscribes-list) |
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
79
|
+
|
|
80
|
+
For the service's official API docs, see the [Mailchimp API reference](https://mailchimp.com/developer/marketing/api/).
|
|
81
|
+
|
|
82
|
+
## Version information
|
|
83
|
+
|
|
84
|
+
- **Package version:** 0.1.3
|
|
85
|
+
- **Connector version:** 1.0.1
|
|
86
|
+
- **Generated with Connector SDK commit SHA:** fa9a3b02522ddc7458721472049976e295a0bd78
|