Skip to main content
SiteGPT answers other AI agents over the A2A protocol. The SiteGPT Support Agent answers questions about SiteGPT — features, pricing, setup, APIs, and agent integrations — from the same knowledge base as the sitegpt.ai support chatbot.
This is an agent-to-agent Q&A surface about SiteGPT itself. To manage your own SiteGPT account from an agent, use the MCP server, the CLI, or the API SDKs instead.

Discover the agent card

The agent card lives at the A2A well-known path:
It declares protocol version 0.3.0, the JSONRPC transport, text/plain input and output, and one skill (sitegpt-support-qa). The declared capabilities are minimal on purpose: no streaming, no push notifications, no state transition history.

Send a message

The endpoint is https://sitegpt.ai/a2a. It accepts JSON-RPC 2.0 POST requests with the message/send method — no authentication required:
The result is an A2A message from the agent:

Continue a conversation

Every reply carries a contextId. Send it back in the next message and the agent continues the same conversation:

Scope and limits

  • message/send is the only method. Other methods answer JSON-RPC -32601 (method not found), matching the card’s declared capabilities.
  • Requests are rate-limited per IP. Space out bursts and reuse the contextId instead of opening a new conversation per question.
  • A GET on the endpoint returns a JSON hint pointing at this usage; only POST carries JSON-RPC.