Skip to main content
Returns all sites registered in the active project, with comment counts. Requires: read permission

URI

surefeedback://sites

Reading via JSON-RPC

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "resources/read",
  "params": {
    "uri": "surefeedback://sites"
  }
}

Response

{
  "project": { "id": "...", "name": "My Project" },
  "total": 2,
  "sites": [
    {
      "id": "c74916e6-b448-495a-ab36-d4b9639069e6",
      "name": "Marketing Site",
      "url": "example.com",
      "is_active": true,
      "comments_count": 24,
      "created_at": "2026-01-01T00:00:00Z"
    },
    {
      "id": "...",
      "name": "Staging",
      "url": "staging.example.com",
      "is_active": true,
      "comments_count": 5,
      "created_at": "2026-02-01T00:00:00Z"
    }
  ]
}

Notes

  • Returns all sites in the project (no limit)
  • To search by name or domain, use the search-sites tool
  • To get a single site with open/total comment breakdown, use surefeedback://sites/{id}