-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
33 lines (29 loc) · 1.01 KB
/
.env.example
File metadata and controls
33 lines (29 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# AdCP Test Agents Configuration
# Copy this file to .env and it will be automatically copied to new worktrees
# Creative Agent (MCP) - No authentication required
CREATIVE_AGENT_URI=https://creative.adcontextprotocol.org
CREATIVE_AGENT_PROTOCOL=mcp
# Example Agent (MCP) - Replace with your agent details
EXAMPLE_AGENT_URI=https://your-agent.example.com/mcp
EXAMPLE_AGENT_PROTOCOL=mcp
EXAMPLE_AGENT_TOKEN=your-token-here
# Multi-Agent Configuration (JSON format)
# This is the format expected by ADCPMultiAgentClient.from_env()
ADCP_AGENTS='[
{
"id": "creative_agent",
"name": "Creative Agent",
"agent_uri": "https://creative.adcontextprotocol.org",
"protocol": "mcp"
},
{
"id": "your_agent",
"name": "Your Agent",
"agent_uri": "https://your-agent.example.com",
"protocol": "mcp",
"auth_token": "your-token-here"
}
]'
# Webhook Configuration (optional)
# WEBHOOK_URL_TEMPLATE=https://myapp.com/webhooks/{agent_id}/{task_type}/{operation_id}
# WEBHOOK_SECRET=your-webhook-secret-here