Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

adcp-signalsADCP 信号

Agent Skill

adcp-signals 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,430

周安装

59

GitHub Stars

207

下载量

467
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:adcp-signals(ADCP 信号)
来源仓库:https://github.com/adcontextprotocol/adcp
仓库路径:skills/adcp-signals
安装命令:
npx skills add https://github.com/adcontextprotocol/adcp --skill adcp-signals
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/adcontextprotocol/adcp --skill adcp-signals

简介

adcp-signals 用于发现和激活广告投放中的定向信号数据,支持基于自然语言的信号检索。

  • 适合在广告平台中快速获取目标人群覆盖能力、定价和部署状态的信号选项。
  • 通过标准 MCP 工具(get_signals、activate_signal)与信号代理交互完成信号管理任务。
  • 安装命令为 npx skills add https://github.com/adcontextprotocol/adcp --skill adcp-signals。
  • 使用时需确认信号平台的接入权限及激活后的实际生效时间。

SKILL.md

AdCP Signals Protocol

This skill enables you to execute the AdCP Signals Protocol with signal agents. Use the standard MCP tools (get_signals, activate_signal) exposed by the connected agent.

Overview

The Signals Protocol provides 2 standardized tasks for discovering and activating targeting data:

TaskPurposeResponse Time
get_signalsDiscover signals using natural language~60s
activate_signalActivate a signal on a platform/agentMinutes-Hours

Typical Workflow

  1. Discover signals: get_signals with a natural language description of targeting needs
  2. Review options: Evaluate signals by coverage, pricing, and deployment status
  3. Activate if needed: activate_signal for signals not yet live on your platform
  4. Use in campaigns: Reference the activation key in your media buy targeting

Task Reference

get_signals

Discover signals based on natural language description, with deployment status across platforms.

Request:

{
  "signal_spec": "High-income households interested in luxury goods",
  "destinations": [
    {
      "type": "platform",
      "platform": "the-trade-desk",
      "account": "agency-123"
    }
  ],
  "countries": ["US"],
  "filters": {
    "max_cpm": 5.0,
    "catalog_types": ["marketplace"]
  },
  "max_results": 5
}

Key fields:

  • signal_spec (string, conditional): Natural language description of desired signals. Required unless signal_ids is provided.
  • destinations (array, optional): Filter signals to those activatable on specific agents/platforms. When omitted, returns all signals available on the current agent. Each item: type, platform/agent_url, optional account.
  • countries (array, optional): ISO 3166-1 alpha-2 country codes where signals will be used
  • filters (object, optional): Filter by catalog_types, data_providers, max_cpm, min_coverage_percentage
  • max_results (number, optional): Limit number of results

Deployment types:

// DSP platform
{ "type": "platform", "platform": "the-trade-desk", "account": "agency-123" }

// Sales agent
{ "type": "agent", "agent_url": "https://salesagent.example.com" }

Response contains:

  • signals: Array of matching signals with:

- signal_agent_segment_id: Use this in activate_signal - name, description: Human-readable signal info - data_provider: Source of the signal data - coverage_percentage: Reach relative to agent's population - deployments: Status per platform with is_live, activation_key, estimated_activation_duration_minutes - pricing: CPM and currency


activate_signal

Activate a signal for use on a specific platform or agent.

Request:

{
  "signal_agent_segment_id": "luxury_auto_intenders",
  "deployments": [
    {
      "type": "platform",
      "platform": "the-trade-desk",
      "account": "agency-123-ttd"
    }
  ]
}

Key fields:

  • signal_agent_segment_id (string, required): From get_signals response
  • deployments (array, required): Target deployment(s) with type, platform/agent_url, and optional account

Response contains:

  • deployments: Array with activation results per target

- activation_key: The key to use for targeting (segment ID or key-value pair) - deployed_at: ISO timestamp when activation completed - estimated_activation_duration_minutes: Time remaining if async

  • errors: Any warnings or errors encountered

Key Concepts

Deployment Targets

Signals can be activated on two types of targets:

DSP Platforms:

{
  "type": "platform",
  "platform": "the-trade-desk",
  "account": "agency-123"
}

Sales Agents:

{
  "type": "agent",
  "agent_url": "https://wonderstruck.salesagents.com"
}

Activation Keys

When signals are live, the response includes an activation key for targeting:

Segment ID format (typical for DSPs):

{
  "type": "segment_id",
  "segment_id": "ttd_segment_12345"
}

Key-Value format (typical for sales agents):

{
  "type": "key_value",
  "key": "audience_segment",
  "value": "luxury_auto_intenders"
}

Signal Types

  • marketplace: Licensed from data providers (CPM pricing)
  • custom: Built for specific principal accounts
  • owned: Private signals from your own data (no cost)

Coverage Percentage

Indicates signal reach relative to the agent's population:

  • 99%: Very broad signal (matches most identifiers)
  • 50%: Medium signal
  • 1%: Very niche signal

Asynchronous Operations

Signal activation may take time. Check the response:

  • is_live: true + activation_key: Ready to use immediately
  • is_live: false + estimated_activation_duration_minutes: Activation in progress

Poll or use webhooks to check completion status.


Error Handling

Common error codes:

  • SIGNAL_AGENT_SEGMENT_NOT_FOUND: Invalid signal_agent_segment_id
  • ACTIVATION_FAILED: Could not activate signal
  • ALREADY_ACTIVATED: Signal already active on target
  • DEPLOYMENT_UNAUTHORIZED: Not authorized for platform/account
  • AGENT_NOT_FOUND: Private agent not visible to this principal
  • AGENT_ACCESS_DENIED: Not authorized for this signal agent

Error responses include:

{
  "errors": [
    {
      "code": "DEPLOYMENT_UNAUTHORIZED",
      "message": "Account not authorized for this data provider",
      "field": "deployment.account",
      "suggestion": "Contact your account manager to enable access"
    }
  ]
}

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude

32.31%
按下载量换算151

Codex

32.14%
按下载量换算150

Cursor

17.64%
按下载量换算82

Gemini CLI

9.44%
按下载量换算44

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills