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

# Reading

> MCP tools for your Instapaper articles and highlights.

## `find_similar_articles`

Find articles thematically similar to a given article by cosine similarity over Voyage AI embeddings.

<ParamField path="article_id" type="integer" required>
  Internal Rewind article id (from an earlier search/recent result)
</ParamField>

<ParamField path="limit" type="number">
  Number of related articles to return Defaults to `5`.
</ParamField>

## `get_article`

Fetch one saved article by id, returning its full body, metadata, and highlights.

<ParamField path="id" type="integer" required>
  Internal Rewind article id (from a get\_recent\_reads, search, semantic\_search, or find\_similar\_articles result)
</ParamField>

## `get_random_highlight`

Get a single random highlight from saved Instapaper articles.

This tool takes no parameters.

## `get_reading_highlights`

Get saved highlights from Instapaper articles.

<ParamField path="limit" type="number">
  Number of highlights to return Defaults to `10`.
</ParamField>

<ParamField path="page" type="number">
  Page number Defaults to `1`.
</ParamField>

## `get_reading_stats`

Get overall reading statistics from Instapaper including total articles, finished count, currently reading, highlights, and word count.

This tool takes no parameters.

## `get_recent_reads`

Get recently saved articles from Instapaper.

<ParamField path="date" type="string">
  Optional: filter to a specific date (YYYY-MM-DD)
</ParamField>

<ParamField path="from" type="string">
  Optional: start of date range (ISO 8601)
</ParamField>

<ParamField path="include_images" type="boolean">
  Include artwork/poster image content blocks in the response. Default true. Set false to keep responses small. Defaults to `true`.
</ParamField>

<ParamField path="limit" type="number">
  Number of recent articles to return (max 50) Defaults to `10`.
</ParamField>

<ParamField path="page" type="number">
  Page number for pagination. Combine with limit to page through longer windows. Defaults to `1`.
</ParamField>

<ParamField path="to" type="string">
  Optional: end of date range (ISO 8601)
</ParamField>
