chatgpt_ads_developer_feedback
Submit Developer Feedback
ChatgptDescription
Submit feedback about missing tools, improvements, bugs, or workflow gaps in the ChatGPT Ads MCP toolset. Not for user-facing issues (auth errors, API errors). Args: feedback_type: new_tool, improvement, bug, workflow_gap title: Short description (5-200 chars) description: What is needed and why (20-2000 chars) current_workaround (optional): How you're working around the gap priority (optional): low, medium (default), high Returns: confirmation that feedback was recorded.
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "chatgpt_ads_developer_feedback",
"arguments": {
"feedback_type": "new_tool",
"title": "Custom audience listing",
"description": "Need a tool to list ChatGPT Ads custom audiences and their match rates",
"priority": "medium",
"reason": "User asked to audit audience targeting"
}
}
}
hopkin chatgpt developer-feedback send
| 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": {
"chatgpt-ads": {
"url": "https://chatgpt.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": "Custom audience listing",
"description": "Need a tool to list ChatGPT Ads custom audiences and their match rates",
"priority": "medium",
"reason": "User asked to audit audience targeting"
}
hopkin chatgpt developer-feedback send --feedback-type new_tool --title Custom audience listing --description Need a tool to list ChatGPT Ads custom audiences and their match rates --priority medium
Workflow gap
{
"feedback_type": "workflow_gap",
"title": "Account-wide ad listing",
"description": "Listing every ad in an account requires walking campaigns then ad groups then ads",
"current_workaround": "Traverse the hierarchy tool by tool",
"reason": "User asked for all ads at once"
}
hopkin chatgpt developer-feedback send --feedback-type workflow_gap --title Account-wide ad listing --description Listing every ad in an account requires walking campaigns then ad groups then ads --current-workaround Traverse the hierarchy tool by tool