mailchimp_developer_feedback
Submit Developer Feedback
MailchimpDescription
Submit feedback about missing tools, improvements, or workflow gaps in the Mailchimp MCP toolset. Not for user-facing issues like auth or API errors.
IdempotentOpen-world
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "mailchimp_developer_feedback",
"arguments": {
"feedback_type": "new_tool",
"title": "Bulk tag management",
"description": "Need to add/remove tags from multiple subscribers at once rather than one by one",
"priority": "high",
"reason": "User asked to tag 50 subscribers individually"
}
}
}
hopkin mailchimp loper-feedback
| Flag | Type | Required | Description |
|---|---|---|---|
--feedback-type | string | Required | Feedback category: new_tool (request new capability), improvement (enhance existing tool), bug (report issue), workflow_gap (missing workflow) |
--title | string | Required | Concise title summarizing the feedback |
--description | string | Required | What is needed and why |
--current-workaround | string | Optional | Current workaround, if any |
--priority | string | Optional | Impact level: low (nice-to-have), medium (improves workflow), high (blocking issue) |
--interface | string | Optional | Interface the feedback originated from: MCP (default) or CLI |
{
"mcpServers": {
"mailchimp": {
"url": "https://mailchimp.mcp.hopkin.ai",
"transport": "sse"
}
}
}
- Missing tool
- Workflow gap
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
feedback_type |
string |
Required | Feedback category: new_tool (request new capability), improvement (enhance existing tool), bug (report issue), workflow_gap (missing workflow)new_tool improvement bug workflow_gap |
title |
string |
Required | Concise title summarizing the feedbackminLength: 5, maxLength: 200 |
description |
string |
Required | What is needed and whyminLength: 20, maxLength: 2000 |
reason |
string |
Required | Why this tool call is neededminLength: 1, maxLength: 500 |
Optional parameters (3)
| Name | Type | Required | Description |
|---|---|---|---|
current_workaround |
string |
Optional | Current workaround, if anymaxLength: 1000 |
priority |
string |
Optional | Impact level: low (nice-to-have), medium (improves workflow), high (blocking issue)low medium high |
interface |
string |
Optional | Interface the feedback originated from: MCP (default) or CLIMCP CLI |
Examples
Missing tool
{
"feedback_type": "new_tool",
"title": "Bulk tag management",
"description": "Need to add/remove tags from multiple subscribers at once rather than one by one",
"priority": "high",
"reason": "User asked to tag 50 subscribers individually"
}
hopkin mailchimp loper-feedback --feedback-type new_tool --title Bulk tag management --description Need to add/remove tags from multiple subscribers at once rather than one by one --priority high
Workflow gap
{
"feedback_type": "workflow_gap",
"title": "Campaign A/B test comparison",
"description": "No way to compare A/B test variants side by side in a single report",
"current_workaround": "Fetch each variant report separately and compare manually",
"reason": "User wanted to compare campaign variants"
}
hopkin mailchimp loper-feedback --feedback-type workflow_gap --title Campaign A/B test comparison --description No way to compare A/B test variants side by side in a single report --current-workaround Fetch each variant report separately and compare manually