Local MCP server that turns AI conversations into polished ebooks and delivers them to Kindle or email
Project description
stewreads
StewReads is a local MCP server that transforms AI conversations into clean, well-formatted ebooks. Everything runs on your machine, with no account and no cloud backend required. Generate EPUB files from your chats and send them directly to Kindle or any email address. Works with Claude Desktop and other MCP-compatible clients.
Website vs Local Package
The official StewReads website is stewreads.com. This PyPI package, stewreads-mcp, is the local-first MCP version for people who want to run ebook generation from Claude Desktop on their own machine. Installing this package does not connect to a StewReads cloud backend.
Features
- Local-first MCP server with no login or cloud backend
- Local stdio MCP server (no backend calls)
- EPUB generation from markdown
- Save generated ebooks to a configured local directory
- Send generated EPUB files by email via built-in Gmail SMTP (App Password)
- Optional MP3 audiobook generation via ElevenLabs TTS
Use Cases
- Learn a new topic with Claude and turn the discussion into a polished ebook for later reading.
- Generate a focused ebook before a flight and read offline on your e-reader.
- Turn long planning or research chats into one clean document you can revisit anytime.
- Create Kindle-ready study notes from tutoring or interview-prep conversations.
- Save and share AI-generated explainers with friends or teammates over email.
Requirements
- Python 3.10+
- uv for repo development
Install From PyPI
Install the released package:
pip install stewreads-mcp
macOS install:
brew install uv
Setup From Repo
Clone and install from this repository:
git clone git@github.com:ankitvg/stewreads-local.git
cd stewreads-local
uv sync
This includes pandoc via pypandoc-binary, so no separate pandoc install is required.
Update Dependencies
uv sync
Configuration
Create ~/.config/stewreads/config.toml:
[paths]
output_dir = "/Users/you/Projects/generated_books"
[email]
from_email = "you@gmail.com"
default_to_email = "kindle-or-reader@example.com"
Important (Kindle Users): For Kindle delivery to work, you MUST add your
from_emailto your Approved Personal Document E-mail List in your Amazon account settings. Otherwise, Amazon will block the incoming ebook for security.
Optional environment overrides:
STEWREADS_CONFIG_PATH(path to config file)STEWREADS_OUTPUT_DIR(overrides configured output dir)STEWREADS_FROM_EMAIL(overrides sender email)STEWREADS_DEFAULT_TO_EMAIL(overrides default recipient email)
Required secret for email sending:
STEWREADS_GMAIL_APP_PASSWORD(Gmail App Password)
Audiobook environment variables (used only when save_ebook(..., create_audio=true)):
ELEVENLABS_API_KEY(required to generate MP3 files)ELEVENLABS_VOICE_ID(optional voice override)
Audiobook defaults:
- Voice: Rachel (
21m00Tcm4TlvDq8ikWAM) - Model:
eleven_multilingual_v2 - Output format:
mp3_44100_128
Run MCP Server
uv run stewreads-mcp
Claude Desktop (Mac) Example
Add to Claude Desktop's claude_desktop_config.json MCP config:
{
"mcpServers": {
"stewreads": {
"command": "uv",
"args": [
"--directory",
"/Users/you/Projects/stewreads-local",
"run",
"stewreads-mcp"
],
"env": {
"STEWREADS_CONFIG_PATH": "/Users/you/.config/stewreads/config.toml",
"STEWREADS_GMAIL_APP_PASSWORD": "your-16-char-app-password",
"ELEVENLABS_API_KEY": "your-elevenlabs-api-key",
"ELEVENLABS_VOICE_ID": "21m00Tcm4TlvDq8ikWAM"
}
}
}
}
Exposed MCP Tools
get_stew_prompt()get_stew_config()get_email_status()save_stew_config(output_dir)save_ebook(markdown, title, filename?, original_prompt?, create_audio?)email_ebook(to_email?, ebook_path?, subject?, body?)
Async Audiobook Behavior
When you call save_ebook(..., create_audio=true):
- EPUB save completes first and Claude can return that result immediately.
- MP3 generation continues in the background and may still be running after the response.
- The response includes
audio_status="generating"and anaudio_pathyou can check in your output directory.
First-Time Claude Flow
- Call
get_stew_config(). - If
configuredisfalse, ask the user for their preferred output directory and callsave_stew_config(output_dir=...). - Call
save_ebook(...)after config is set. - Call
get_email_status()before sending. - Call
email_ebook(...)to send the latest EPUB (or specifyebook_path).
Testing (Local Development)
Run tests:
uv run --with pytest python -m pytest -q tests
Optional lint check:
uv run --with ruff ruff check src tests
Dev Shell Safety
When running multi-step shell commands, you may see set -euo pipefail:
-e: stop on command failure.-u: fail on unset variables.-o pipefail: fail if any command in a pipeline fails.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file stewreads_mcp-0.1.2.tar.gz.
File metadata
- Download URL: stewreads_mcp-0.1.2.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a69ab950a45e8e506245b279641ae0aa4dff8602de481b3744f94276fa73aafd
|
|
| MD5 |
b4d8f36953fcac21c7daad23d09c41cf
|
|
| BLAKE2b-256 |
e674bc9cfb94eba51545bed5b0f65064772df18c5cc3ef2bcc3fef5492f4812d
|
File details
Details for the file stewreads_mcp-0.1.2-py3-none-any.whl.
File metadata
- Download URL: stewreads_mcp-0.1.2-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c67f223340f55b8ab3667bad142c59c49e714c4d9c6a08918d021d3081dd846
|
|
| MD5 |
27d11722b69ea21ae60c3cdb6ece4e35
|
|
| BLAKE2b-256 |
84ddab016da78623ad2649983d02d86ff52ebde94878895654368023b324ba63
|