Agent Signals
Docs Navigation
Integration

JSON-LD Setup

Publish structured data so AI systems can interpret your agent without guesswork. JSON-LD is the fastest way to surface capabilities to AgentSignals.

Implementation steps

  1. Create a JSON-LD object that describes your agent.
  2. Embed it in the HTML head of your homepage.
  3. Re-scan with the AgentSignals Scanner to verify.

JSON-LD example

JSON-LDJSON
{ "@context": "https://schema.org", "@type": "SoftwareApplication", "name": "Your Agent", "applicationCategory": "Artificial Intelligence", "url": "https://your-agent.com", "operatingSystem": "Web", "description": "Short, machine-readable summary of your agent." }

Embed in HTML

HTMLHTML
<script type="application/ld+json"> {JSON_LD_HERE} </script>
Send Feedback