Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"reader": {
"env": {
"READWISE_ACCESS_TOKEN": "your-token-here"
},
"args": [
"--directory",
"/absolute/path/to/your/reader/server",
"run",
"main.py"
],
"command": "uv"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that seamlessly integrates with your Readwise Reader library. This server enables MCP-compatible clients like Claude and VS Code to interact with your Reader library, providing capabilities for document listing, retrieval, and updates. It serves as a bridge between MCP clients and your personal knowledge repository in Readwise Reader.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'skills' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked skills against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for Reader Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that seamlessly integrates with your Readwise Reader library. This server enables MCP-compatible clients like Claude and VS Code to interact with your Reader library, providing capabilities for document listing, retrieval, and updates. It serves as a bridge between MCP clients and your personal knowledge repository in Readwise Reader.
list_documents
location (string, optional): Folder to filter by. One of new, later, shortlist, archive, feed.updatedAfter (string, optional): Only return documents updated after this ISO8601 timestamp.withContent (boolean, optional): If true, include HTML content in results (default: false).pageCursor (string, optional): Pagination cursor for fetching the next page.To use this server with Claude Desktop, VS Code, or any MCP-compatible client, add the following configuration to your client settings (e.g., claude_desktop_config.json or .vscode/mcp.json):
{
"mcpServers": {
"reader": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/your/reader/server",
"run",
"main.py"
],
"env": {
"READWISE_ACCESS_TOKEN": "your-token-here"
}
}
}
}
/absolute/path/to/your/reader/server with the actual path to this project directory.your-token-here with your actual Readwise Reader API access token.READWISE_ACCESS_TOKEN in an .env file located in the project directory.For more information, see the Readwise Reader API documentation and MCP documentation.
This repository also includes a standalone skill for interacting with Readwise Reader API directly via HTTP requests. The skill provides knowledge and examples for using the Reader API without requiring an MCP server.
npx skills add xinthink/reader-mcp-server --skill reader
For more information on installing and using skills, see the Vercel Labs Skills documentation.
Once installed, the skill will be automatically triggered when you ask about Readwise Reader, saving articles, or managing your reading list.