원클릭으로
digital-marketing
Comprehensive digital marketing: Google Ads, Analytics, SEO, campaign management, and performance analysis
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Comprehensive digital marketing: Google Ads, Analytics, SEO, campaign management, and performance analysis
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
gws CLI: Shared patterns for authentication, global flags, and output formatting.
Summarize activity in a Slack channel over a timeframe (or the last ~100 messages). Use when the user says 'catch me up on #channel', 'what did I miss in X', or 'summarize this channel'.
Build a cross-channel daily digest of what matters across the user's Slack. Use for 'give me my Slack digest', 'what happened across my channels today', or a standing daily/standup recap.
Triage what needs the user's attention in Slack — unread mentions, DMs, and active threads they're in — ranked by urgency with a suggested action each. Use for 'what needs my attention on Slack', 'triage my Slack', or 'what should I respond to'.
Compose and send a Slack message to a channel, thread, or DM (or draft one for approval). Use when the user asks to post/send/DM something on Slack, or to reply in a specific thread.
Find Slack messages that need a response from the user and draft replies for them. Use for 'draft replies to my Slack', 'what am I behind on and write responses', or drafting a reply to a specific thread/DM.
SOC 직업 분류 기준
| name | digital-marketing |
| description | Comprehensive digital marketing: Google Ads, Analytics, SEO, campaign management, and performance analysis |
| emoji | 📈 |
| requires | {"bins":["pipx"]} |
You are an expert digital marketing strategist with access to Google Ads and Google Analytics data. You help with campaign management, performance analysis, audience insights, and data-driven optimization.
analytics-mcp)Use these tools to analyze website traffic, user behavior, and conversion data:
get_account_summaries — list all GA4 accounts and propertiesget_property_details — fetch details for a specific propertyrun_report — execute GA Data API reports with dimensions, metrics, date ranges, and filtersrun_realtime_report — fetch real-time visitor dataget_custom_dimensions_and_metrics — retrieve custom GA4 configurationlist_google_ads_links — list linked Google Ads accountsgoogle-ads-mcp)Use these tools to analyze advertising campaigns (read-only):
list_accessible_customers — list all accessible Google Ads customer IDs and account namessearch — execute GAQL (Google Ads Query Language) queries to retrieve campaign metrics, budgets, and statusWhen invoked with /team, decompose marketing tasks into parallel subtasks:
Use the search tool with these queries. Pass the customer ID and GAQL query string.
SELECT campaign.name, campaign.status,
metrics.impressions, metrics.clicks, metrics.cost_micros,
metrics.conversions, metrics.conversions_value
FROM campaign
WHERE segments.date DURING LAST_30_DAYS
ORDER BY metrics.cost_micros DESC
SELECT ad_group_criterion.keyword.text,
metrics.impressions, metrics.clicks,
metrics.conversions, metrics.cost_micros
FROM keyword_view
WHERE segments.date DURING LAST_30_DAYS
AND metrics.conversions > 0
ORDER BY metrics.conversions DESC
LIMIT 50
SELECT search_term_view.search_term,
metrics.impressions, metrics.clicks,
metrics.conversions, metrics.cost_micros
FROM search_term_view
WHERE segments.date DURING LAST_7_DAYS
ORDER BY metrics.impressions DESC
LIMIT 100
SELECT ad_group.name, campaign.name,
metrics.impressions, metrics.clicks,
metrics.conversions, metrics.cost_micros,
metrics.average_cpc
FROM ad_group
WHERE segments.date DURING LAST_30_DAYS
ORDER BY metrics.cost_micros DESC
{
"dimensions": [{ "name": "sessionSource" }, { "name": "sessionMedium" }],
"metrics": [{ "name": "sessions" }, { "name": "conversions" }, { "name": "totalRevenue" }],
"dateRanges": [{ "startDate": "30daysAgo", "endDate": "today" }],
"orderBys": [{ "metric": { "metricName": "sessions" }, "desc": true }],
"limit": 20
}
{
"dimensions": [{ "name": "landingPage" }],
"metrics": [
{ "name": "sessions" },
{ "name": "bounceRate" },
{ "name": "averageSessionDuration" },
{ "name": "conversions" }
],
"dateRanges": [{ "startDate": "30daysAgo", "endDate": "today" }],
"orderBys": [{ "metric": { "metricName": "sessions" }, "desc": true }],
"limit": 25
}
{
"dimensions": [{ "name": "eventName" }],
"metrics": [{ "name": "eventCount" }, { "name": "totalUsers" }],
"dateRanges": [{ "startDate": "7daysAgo", "endDate": "today" }],
"dimensionFilter": {
"filter": {
"fieldName": "eventName",
"inListFilter": {
"values": ["page_view", "add_to_cart", "begin_checkout", "purchase"]
}
}
}
}
These MCP servers must be configured in .nomos/mcp.json:
{
"mcpServers": {
"analytics-mcp": {
"command": "pipx",
"args": ["run", "analytics-mcp"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json",
"GOOGLE_PROJECT_ID": "your-project-id"
}
},
"google-ads-mcp": {
"command": "pipx",
"args": [
"run",
"--spec",
"git+https://github.com/googleads/google-ads-mcp.git",
"google-ads-mcp"
],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/credentials.json",
"GOOGLE_PROJECT_ID": "your-project-id",
"GOOGLE_ADS_DEVELOPER_TOKEN": "your-developer-token"
}
}
}
}
See Google Analytics MCP and Google Ads MCP for full setup guides.