This content has not been translated yet.

Readwise

Readwise integration — highlights, notes, and saved documents

Overview

Akita integrates with Readwise and Readwise Reader to pull in reading highlights, annotations, document-level notes, and saved articles.

Capabilities

Reading Activity

readwise__get_reading_activity fetches for a date range:

  • Highlights grouped by source
  • Highlight-level notes
  • Document-level notes
  • Saved-but-unhighlighted documents

Documents

readwise__get_documents returns Reader documents with structured metadata and Markdown digest. Filter by:

  • Date range (start/end)
  • Category: article, email, highlight, etc.

Full Content

readwise__get_document_content retrieves the complete Reader document contents and metadata for a specific document ID. Supports optional max_chars truncation.

Resource Discovery

readwise__list_available_resources describes which resources are exposed (highlights and documents) along with supported parameters.

Typical Usage

# What did I read/highlight this week?
readwise__get_reading_activity(start_date="2026-03-13", end_date="2026-03-20")

# Get all saved articles from this month
readwise__get_documents(start_date="2026-03-01", end_date="2026-03-20", category="article")

# Read the full content of a specific article
readwise__get_document_content(document_id="...")

MCP Tools

See MCP Tools Reference for the full list of readwise__* tools.