mailchimp_list_templates
List Mailchimp Templates
MailchimpDescription
List email templates in the Mailchimp account with type filtering, name search, and pagination. Filter by type (user, base, gallery) to narrow results.
Read-onlyIdempotentOpen-world
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "mailchimp_list_templates",
"arguments": {
"reason": "List all templates"
}
}
}
hopkin mailchimp -templates
| Flag | Type | Required | Description |
|---|---|---|---|
--limit | integer | Optional | Maximum number of results to return (1–100). Default: 20. |
--cursor | string | Optional | Opaque pagination cursor from a previous response. |
--refresh | boolean | Optional | Force a fresh fetch bypassing the cache. |
--account | string | Optional | Mailchimp account ID. Required when multiple accounts are connected. Use mailchimp_list_accounts to see available accounts. |
--search | string | Optional | Filter templates by name (case-insensitive substring match). |
--type | string | Optional | Filter templates by type. |
{
"mcpServers": {
"mailchimp": {
"url": "https://mailchimp.mcp.hopkin.ai",
"transport": "sse"
}
}
}
- List all
- Filter by type
- Search
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
reason |
string |
Required | Why this tool call is neededminLength: 1, maxLength: 500 |
Optional parameters (6)
| Name | Type | Required | Description |
|---|---|---|---|
limit |
integer |
Optional | Maximum number of results to return (1–100). Default: 20.min: 1, max: 100 |
cursor |
string |
Optional | Opaque pagination cursor from a previous response. |
refresh |
boolean |
Optional | Force a fresh fetch bypassing the cache. |
account_id |
string |
Optional | Mailchimp account ID. Required when multiple accounts are connected. Use mailchimp_list_accounts to see available accounts. |
search |
string |
Optional | Filter templates by name (case-insensitive substring match). |
type |
string |
Optional | Filter templates by type.user base gallery |
Examples
List all
{
"reason": "List all templates"
}
hopkin mailchimp -templates
Filter by type
{
"type": "user",
"reason": "List user-created templates"
}
hopkin mailchimp -templates --type user
Search
{
"search": "Newsletter",
"reason": "Find newsletter templates"
}
hopkin mailchimp -templates --search Newsletter