> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# surefeedback://sites

> List all sites (web properties) in the current project.

Returns all sites registered in the active project, with comment counts.

**Requires:** `read` permission

## URI

```
surefeedback://sites
```

## Reading via JSON-RPC

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "resources/read",
  "params": {
    "uri": "surefeedback://sites"
  }
}
```

## Response

```json theme={null}
{
  "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`](/mcp/tools/search-sites) tool
* To get a single site with open/total comment breakdown, use [`surefeedback://sites/{id}`](/mcp/resources/site)
