Readwise Enhanced▌
by arnaldo-delisio
Readwise Enhanced is knowledge base software for unified access to articles, books, and highlights, ideal for knowledge
Integrates with Readwise Reader and Highlights APIs to provide unified access to saved articles, books, highlights, and annotations with intelligent text extraction and cross-referencing capabilities for knowledge workers and researchers.
Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.
best for
- / Knowledge workers building on their research library
- / Researchers analyzing collected highlights and notes
- / Students reviewing saved content for learning
- / Writers referencing their curated reading materials
capabilities
- / Search saved articles and documents in Readwise Reader
- / Access highlights and annotations from books and articles
- / Extract and process text content with AI-powered segmentation
- / Filter content by tags, dates, categories, and keywords
- / Generate daily review summaries for spaced repetition
- / Query highlights with relevance scoring
what it does
Connects to your Readwise account to access saved articles, books, highlights, and annotations with AI-powered text processing and smart filtering. Reduces token usage by 94% while providing complete access to your Readwise data.
about
Readwise Enhanced is a community-built MCP server published by arnaldo-delisio that provides AI assistants with tools and capabilities via the Model Context Protocol. Readwise Enhanced is knowledge base software for unified access to articles, books, and highlights, ideal for knowledge It is categorized under productivity.
how to install
You can install Readwise Enhanced in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
MIT
Readwise Enhanced is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
| status | published |
| category | mcp-server |
| author | arnaldo-delisio |
| published_npm | true |
| npm_package | readwise-mcp-enhanced |
| published_directories | [] |
| production_url | null |
| last_active | 2026-01-26 |
Readwise MCP Enhanced
A comprehensive Model Context Protocol (MCP) server that unifies Readwise Reader document management with full Readwise highlights functionality. Works with Claude Desktop, Continue, and any MCP-compatible AI tool. Built with TypeScript, featuring advanced text processing, smart content controls, and context-optimized responses.
🚀 What This Is
The first unified MCP that combines:
- Complete Readwise Reader API - Save, manage, and search documents
- Full Readwise Highlights API - Access all your highlights, books, and daily reviews
- AI-Powered Text Processing - Intelligent word segmentation and content extraction
- Context Optimization - 94% reduction in token usage while maintaining full functionality
- Smart Content Controls - Prevent context explosion with advanced filtering and pagination
Equivalent to the official Readwise MCP but more efficient and feature-complete. Compatible with all MCP clients.
✨ Key Features
📚 Enhanced Reader Management
- Smart Content Extraction: Pagination, keyword filtering, length limits
- AI-Powered Text Processing: Automatic word segmentation fixes merged words
- Performance Controls: Built-in warnings and guidance for expensive operations
- Flexible Filtering: By location, category, tags, dates, and custom criteria
🎯 Complete Highlights Ecosystem
- Daily Reviews: Spaced repetition learning system
- Advanced Search: Field-specific queries with relevance scoring
- Book Management: Full metadata with highlight counts and filtering
- Export & Backup: Bulk highlight analysis and incremental sync
- Manual Creation: Add highlights with full metadata support
⚡ Production Excellence
- Context Optimized: 94% reduction in token usage (25,600 → 1,600 tokens)
- Dual API Architecture: Seamless v2 (highlights) + v3 (Reader) integration
- Unlimited Results: No artificial limits, just efficient data per item
- MCP Protocol Compliant: Proper logging, error handling, and rate limiting
🛠️ Installation
Option 1: NPX - No Installation Required! (Recommended)
No installation needed! Any MCP client will automatically download and run the package using npx.
Option 2: Global NPM Installation
npm install -g readwise-mcp-enhanced
Option 3: From Source
git clone https://github.com/arnaldo-delisio/readwise-mcp-enhanced.git
cd readwise-mcp-enhanced
npm install
npm run build
🔧 Configuration
With Any MCP-Compatible Tool
-
Get your Readwise token: https://readwise.io/access_token
-
Add to your MCP client configuration:
Claude Desktop:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Continue IDE Extension:
- Add to your Continue configuration file
Other MCP Tools:
- Follow your tool's MCP server configuration instructions
Option A - Using npx (Recommended):
{ "mcpServers": { "readwise-mcp-enhanced": { "command": "npx", "args": ["readwise-mcp-enhanced"], "env": { "READWISE_TOKEN": "your_readwise_access_token_here" } } } }Option B - If installed globally via npm:
{ "mcpServers": { "readwise-mcp-enhanced": { "command": "readwise-mcp-enhanced", "env": { "READWISE_TOKEN": "your_readwise_access_token_here" } } } }Option C - If installed from source:
{ "mcpServers": { "readwise-mcp-enhanced": { "command": "node", "args": ["/path/to/readwise-mcp-enhanced/dist/index.js"], "env": { "READWISE_TOKEN": "your_readwise_access_token_here" } } } } - macOS:
-
Restart your MCP client (Claude Desktop, Continue, etc.)
📖 Available Tools (13 Total)
📚 Reader Tools (6) - Enhanced
readwise_save_document
Save documents with full metadata control.
{
"url": "https://example.com/article",
"tags": ["ai", "productivity"],
"location": "later",
"category": "article"
}
readwise_list_documents
⭐ Enhanced with Smart Content Controls
{
"withFullContent": true,
"contentMaxLength": 10000,
"contentStartOffset": 0,
"contentFilterKeywords": ["AI", "machine learning"],
"limit": 10
}
Smart Content Parameters:
contentMaxLength: Limit content per document (default: 50,000 chars)contentStartOffset: Start extraction from specific position (pagination)contentFilterKeywords: Extract only sections containing keywords- Performance warnings for expensive operations
readwise_update_document
Update document metadata (title, author, summary, location, etc.)
readwise_delete_document
Remove documents from your Reader library
readwise_list_tags
Get all your document tags
readwise_topic_search
⭐ Enhanced with AI-powered text processing
- Regex-based search across title, summary, notes, tags
- Automatic word segmentation for better matching
- Distributed keyword finding throughout content
🎯 Highlights Tools (7) - New
readwise_list_highlights
List highlights with advanced filtering:
{
"book_id": 12345,
"highlighted_at__gt": "2024-01-01T00:00:00Z",
"page_size": 100
}
readwise_get_daily_review
Get your spaced repetition highlights:
{
"review_id": 168844911,
"highlights": [
{
"text": "Strategic wisdom quote...",
"title": "The Art of War",
"author": "Sun Tzu"
}
]
}
readwise_search_highlights
⭐ Advanced search with field-specific queries:
{
"textQuery": "strategy tactics",
"fieldQueries": [
{
"field": "document_title",
"searchTerm": "Art of War"
}
],
"limit": 20
}
readwise_list_books
Get books with highlight metadata:
{
"category": "books",
"last_highlight_at__gt": "2024-01-01T00:00:00Z"
}
readwise_get_book_highlights
Get all highlights from a specific book:
{
"bookId": 53827741
}
readwise_export_highlights
Bulk export for analysis and backup:
{
"updatedAfter": "2024-01-01T00:00:00Z",
"includeDeleted": false
}
readwise_create_highlight
Manually add highlights with metadata:
{
"highlights": [
{
"text": "Important insight...",
"title": "Book Title",
"author": "Author Name",
"note": "My thoughts on this",
"category": "books"
}
]
}
🎯 Context Optimization
94% Token Reduction while maintaining full functionality:
| Tool | Before | After | Savings |
|---|---|---|---|
| List Highlights (32 items) | ~25,600 tokens | ~1,600 tokens | 94% |
| Daily Review (5 items) | ~5,000 tokens | ~400 tokens | 92% |
| List Books (10 items) | ~8,000 tokens | ~600 tokens | 93% |
Optimized Fields:
- Highlights:
id,text,note,book_idonly - Books:
id,title,author,category,num_highlightsonly - Search:
text,book,author,scoreonly
🧠 AI-Powered Features
Intelligent Word Segmentation
Automatically fixes common text extraction issues:
whatyou→what youfromdissatisfaction→from dissatisfactiontimeago→time ago
Smart Content Processing
- Sentence-based chunking for YouTube transcripts
- Distributed keyword filtering throughout content
- Context-aware text extraction with proper spacing
Advanced Search Algorithm
- Multi-field search with relevance scoring
- Export-based comprehensive search equivalent to official MCP
- Field-specific filtering (title, author, text, notes, tags)
📊 Technical Architecture
Dual API Client System
// Seamless API switching
v2 API: Highlights, books, daily review, export
v3 API: Reader documents, tags, search
Context-Efficient Design
- Unlimited results with minimal data per item
- LLM-optimized responses for efficient parsing
- Structured JSON maintains full reasoning capabilities
Production Ready
- ES Module standard with proper TypeScript definitions
- MCP protocol compliant logging and error handling
- Comprehensive rate limiting and graceful fallbacks
⚙️ API Coverage
Readwise Reader API (v3)
- ✅ Documents: Save, list, update, delete
- ✅ Tags: List and filter
- ✅ Content: Smart extraction with controls
- ✅ Search: Enhanced topic search
Readwise Highlights API (v2)
- ✅ Highlights: List, create, search, export
- ✅ Books: List with metadata and filtering
- ✅ Daily Review: Spaced repetition system
- ✅ Advanced Search: Field-specific queries
🔐 Authentication & Security
- Single Token: One Readwise token for both APIs
- Environment Variable: Secure token storage via
READWISE_TOKEN - No Token Exposure: Never exposed through MCP clients or tools interface
📈 Rate Limits
- Reader API: 20 requests/minute (default), 50/minute (CREATE/UPDATE)
- Highlights API: Standard Readwise limits with automatic retry-after handling
- Smart Handling: 429 responses include "Retry-After" header processing
🚀 Usage Examples
Smart Content Extraction
FAQ
- What is the Readwise Enhanced MCP server?
- Readwise Enhanced is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for Readwise Enhanced?
- This profile displays 44 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
Use Cases▌
Extended AI Capabilities
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Context Enhancement
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Workflow Automation
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Implementation Guide▌
Prerequisites
- ›Claude Desktop 0.7.0+ or Cursor IDE with MCP support
- ›Basic understanding of MCP architecture and capabilities
- ›Access credentials for integrated services (if required)
- ›Willingness to experiment and iterate on configuration
Time Estimate
15-60 minutes depending on server complexity
Installation Steps
- 1.Install MCP server: npm install -g [package-name] or via GitHub
- 2.Add server configuration to ~/.claude/mcp.json
- 3.Provide required credentials and configuration
- 4.Restart Claude Desktop to load new server
- 5.Test basic functionality with simple prompts
- 6.Explore capabilities and experiment with use cases
- 7.Document successful patterns for reuse
Troubleshooting
- ⚠MCP server not loading: Check config syntax, verify installation
- ⚠Connection errors: Check network, firewall, credentials
- ⚠Feature not working: Read server docs, check required parameters
- ⚠Performance issues: Monitor resource usage, check for network latency
- ⚠Conflicts with other servers: Check port assignments, namespace collisions
Best Practices▌
✓ Do
- +Read server documentation thoroughly before setup
- +Start with simple use cases to validate functionality
- +Test in non-production environment first
- +Monitor resource usage and performance
- +Keep servers updated for bug fixes and new features
- +Document configuration for team members
- +Use environment variables for sensitive configuration
✗ Don't
- −Don't grant overly permissive access to MCP servers
- −Don't skip reading security considerations in docs
- −Don't expose sensitive data without proper controls
- −Don't run untrusted MCP servers without code review
- −Don't ignore error messages—investigate root cause
💡 Pro Tips
- ★Combine multiple MCP servers for powerful workflows
- ★Create custom MCP servers for your specific needs
- ★Share successful configurations with team
- ★Use MCP inspector for debugging
- ★Join MCP community for tips and troubleshooting
Technical Details▌
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
- Model Context Protocol (MCP)
- JSON-RPC 2.0
- stdio or HTTP transport
Compatibility
- Claude Desktop
- Cursor IDE
- Custom MCP clients
When to Use This▌
✓ Use When
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid When
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.
Integration▌
- →Tool composition: Chain multiple MCP tools in workflows
- →Context augmentation: Provide AI with relevant external data
- →Action delegation: Let AI execute tasks on external systems
- →Bidirectional sync: Keep AI context and external systems in sync
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
List & Promote Your MCP Server
Share your MCP server with the developer community
Ratings
4.5★★★★★44 reviews- ★★★★★Hana Desai· Dec 24, 2024
Readwise Enhanced reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Yuki Patel· Dec 4, 2024
We wired Readwise Enhanced into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
- ★★★★★Evelyn Nasser· Nov 23, 2024
According to our notes, Readwise Enhanced benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
- ★★★★★Advait Ghosh· Nov 15, 2024
I recommend Readwise Enhanced for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Rahul Santra· Nov 11, 2024
Readwise Enhanced is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Yuki Tandon· Oct 14, 2024
Readwise Enhanced has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Ren Park· Oct 6, 2024
Strong directory entry: Readwise Enhanced surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Pratham Ware· Oct 2, 2024
We evaluated Readwise Enhanced against two servers with overlapping tools; this profile had the clearer scope statement.
- ★★★★★Naina Shah· Sep 25, 2024
Readwise Enhanced has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Sakshi Patil· Sep 17, 2024
Useful MCP listing: Readwise Enhanced is the kind of server we cite when onboarding engineers to host + tool permissions.
showing 1-10 of 44