npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hyphagroup/readwise-mcp

v0.1.1

Published

MCP server for Readwise - access highlights, documents, and books via Model Context Protocol

Readme

@hyphagroup/readwise-mcp

MCP server for Readwise - access your highlights, documents, and books via Model Context Protocol.

Features

  • Unified Search - Search across both highlights and Reader documents with filters
  • Reader API (v3) - Save, list, update, and delete documents
  • Highlights API (v2) - List, create, update, delete, and export highlights
  • Highlight Tags - List, add, and remove tags on highlights
  • Books & Daily Review - Access your library and spaced repetition reviews
  • Debug Logging - Optional verbose logging for troubleshooting

Installation

Global Install (Recommended)

npm install -g @hyphagroup/readwise-mcp

Then run:

readwise-mcp

Via npx

npx -y -p @hyphagroup/readwise-mcp readwise-mcp

Configuration

Environment Variables

| Variable | Description | Required | |----------|-------------|----------| | READWISE_API_KEY | Your Readwise access token. Get it at https://readwise.io/access_token | Yes | | READWISE_DEBUG | Set to 1 for verbose logging to stderr | No | | READWISE_DEBUG_LOG | Path to write debug logs to a file | No |

Factory AI / Droid

Add to ~/.factory/mcp.json or .factory/mcp.json:

{
  "mcpServers": {
    "readwise": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "-p", "@hyphagroup/readwise-mcp", "readwise-mcp"],
      "env": {
        "READWISE_API_KEY": "your_token_here"
      }
    }
  }
}

Or with global install:

{
  "mcpServers": {
    "readwise": {
      "type": "stdio",
      "command": "readwise-mcp",
      "args": [],
      "env": {
        "READWISE_API_KEY": "your_token_here"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "readwise": {
      "command": "npx",
      "args": ["-y", "-p", "@hyphagroup/readwise-mcp", "readwise-mcp"],
      "env": {
        "READWISE_API_KEY": "your_token_here"
      }
    }
  }
}

Available Tools (18)

Search

  • readwise_search - Search across highlights and documents with filters (tags, author, date range, hasNote, sorting)

Reader Documents (6)

  • readwise_document_list - List documents with filters (location, category, date)
  • readwise_document_save - Save a new document by URL or HTML
  • readwise_document_update - Update document metadata
  • readwise_document_delete - Delete a document
  • readwise_document_get - Get document with full HTML content
  • readwise_document_tag_list - List all tags in Reader

Highlights (11)

  • readwise_highlight_list - List highlights with filters
  • readwise_highlight_create - Create a new highlight
  • readwise_highlight_export - Bulk export all highlights
  • readwise_highlight_update - Update highlight text, note, color, or location
  • readwise_highlight_delete - Delete a highlight (requires confirmation)
  • readwise_highlight_source_list - List books/articles/sources in your library
  • readwise_highlight_source_get - Get detailed source information
  • readwise_highlight_review - Get your daily review highlights
  • readwise_highlight_tag_list - List tags on a specific highlight
  • readwise_highlight_tag_add - Add a tag to a highlight
  • readwise_highlight_tag_remove - Remove a tag from a highlight

Categories

Reader documents use these categories: article, email, rss, highlight, note, pdf, epub, tweet, video

Debugging

Enable verbose logging:

READWISE_API_KEY=xxx READWISE_DEBUG=1 readwise-mcp

Write logs to a file (useful when running via MCP client):

READWISE_API_KEY=xxx READWISE_DEBUG=1 READWISE_DEBUG_LOG=/tmp/readwise-mcp.log readwise-mcp

License

MIT