sourceslisted
Install: claude install-skill jmagar/axon
# axon-sources
Lists all indexed URLs with chunk counts and indexing timestamps.
## MCP (preferred)
```json
{ "action": "sources" }
```
## CLI fallback
```bash
axon sources
```
## Reading a large list
Grep for a specific domain or path:
```json
{
"action": "artifacts",
"subaction": "grep",
"path": ".cache/axon-mcp/<file>",
"pattern": "docs.example.com"
}
```
Check whether a specific URL is indexed:
```json
{
"action": "artifacts",
"subaction": "grep",
"path": ".cache/axon-mcp/<file>",
"pattern": "example.com/specific-page"
}
```
## If a URL is missing
```json
{ "action": "scrape", "url": "https://..." }
```
## sources vs domains vs stats
| Command | Granularity | Best for |
|---------|-------------|----------|
| `sources` | Per URL | "Is this page indexed?" |
| `domains` | Per domain | Coverage audit by site |
| `stats` | Collection total | "How big is my index?" |