Skip to main content
This guide helps brands implement Sponsored Intelligence agents. Once implemented, your agent can be invoked by SI hosts like Addy, ChatGPT, or other AI assistants.

Quick Start

An SI agent is an MCP or A2A server that implements four tasks:
  1. si_get_offering - Respond to offering lookups (details, availability, products)
  2. si_initiate_session - Start a conversation
  3. si_send_message - Exchange messages
  4. si_terminate_session - End the conversation

Capability Discovery

SI agents expose their capabilities through the standard AdCP get_adcp_capabilities task. When a host calls this task, your agent returns its SI configuration:
This unified discovery mechanism lets hosts discover SI capabilities alongside other AdCP protocols.

Reference Implementation

Reference implementations are coming soon. When available, they will demonstrate:
  • All four SI tasks implemented as MCP tools
  • Session management with timeout handling
  • Identity and consent handling
  • UI element generation
  • ACP checkout handoff

Task Structure

Each SI task follows the MCP tool pattern:

Key Implementation Considerations

1. The Conversation Handoff

The intent field in si_initiate_session is the host’s handoff message — what the host AI tells your brand agent about what the user is trying to do. This is visible to the user as part of the conversation flow. For example, when a user says “I need to fly to Boston next week” in ChatGPT, and the host decides to connect them to Delta’s SI agent, the handoff might look like:
“I’m connecting you with Delta to help with your Boston flight. They can check availability and offerings for you.”
Your brand agent receives the intent and should respond naturally — as if continuing the conversation:
The key is that SI is a conversation, not an API call. Your brand agent should feel like talking to a helpful person, not filling out a form.

2. Identity Handling

When consent_granted is true, you receive real PII:

3. UI Elements

Return structured data that hosts can render:

4. Session Management

Sessions should have timeouts and cleanup:

5. Handoff to ACP

When the user is ready to purchase, signal a handoff:

Testing Your Endpoint

Local Testing

Use the MCP Inspector to test your endpoint:

Integration Testing with Addy

Once your endpoint is registered:
  1. Join the AgenticAdvertising.org Slack workspace
  2. Start a conversation with Addy
  3. Say “connect me with [Your Brand]”
  4. Addy will invoke your SI endpoint

Registering Your SI Agent

To make your SI agent available through Addy and other hosts:
  1. Implement the five SI tasks (get_adcp_capabilities + four SI tasks)
  2. Ensure get_adcp_capabilities returns your SI endpoint and capabilities
  3. Contact the AgenticAdvertising.org team to register your endpoint
  4. Test the integration in the staging environment

Next Steps