Search and save to your Purl read-it-later knowledge base from any MCP client.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Save anything. Ask questions. Get answers.
Live preview: https://purl.nublson.com
Purl is an AI-powered read-it-later app and personal knowledge base. You paste URLs (or upload files): web pages, PDFs, YouTube videos, and audio. Purl ingests the content, stores chunked text with vector embeddings, and answers questions by searching what you saved β optionally scoped with @ mentions to specific items.
Plans: Free, Pro, and BYOK are enforced server-side (see docs/commercial-model.md). New signups get a 7-day Pro trial (no card required). Stripe Checkout handles the one-time Pro payment; webhooks sync status to Postgres.
The product goal: one place to stash material you care about, then query it later with citations instead of digging through bookmarks.
| Feature | Free | Pro ($39 one-time) | BYOK (free) |
|---|---|---|---|
| Save links (100 lifetime cap) | Yes | Unlimited | Unlimited |
| Full-text search | Yes | Yes | Yes |
| AI extraction & embeddings | No | Yes (150/mo) | Yes (unlimited) |
| Semantic search | No | Yes | Yes |
| PDF/audio upload | No | Yes | Yes |
| AI chat | No | 300 msg/mo | Unlimited |
Exact limits are in docs/commercial-model.md.
openai/text-embedding-3-small), stores in Postgres with pgvector; tracks per-link ingest status (pending, processing, completed, failed, skipped for edge cases like heavy SPAs).openai/text-embedding-3-small). OpenAI directly for Whisper transcription only (OPENAI_API_KEY). Keys live in server environment variables only.providerOptions.gateway with the signed-in user id and tags so the Vercel AI dashboard can filter spend and usage by person and surface (feature:chat, env:β¦ from VERCEL_ENV / NODE_ENV; feature:ingest on save pipelines; feature:semantic-search when the model runs vector search over saved chunks).safeFetch with optional proxy/DNS controls (see AGENTS.md). For reliable YouTube transcripts on Vercel, configure SAFE_OUTBOUND_HTTP_PROXY in production.@ mentions to focus the model on specific saved links; mentions persist on messages.src/app/sw.ts) that builds to public/sw.js (generated on pnpm build, gitignored). Enables Install in Chrome/Edge and similar where the platform supports it, with runtime caching via Serwist's Next.js defaults and a static offline shell at /~offline. Serwist is disabled in pnpm dev to avoid service-worker cache surprises during development β use pnpm build && pnpm start (or your production URL) to exercise installability and the SW.Saving a link is synchronous through metadata resolution and the database row; heavy work runs afterward so the API can return quickly.
POST /api/links with a URL, or POST /api/upload with a PDF/audio file (files go to Supabase Storage; the Link stores the public URL).detectContentType (SSRF-safe HEAD / sniff) plus scrapeLinkMetadata (Open Graph HTML, PDF Content-Disposition / size, YouTube oEmbed). Duplicates of the same URL refresh metadata and reset ingestion.Link row is created (default PENDING) with title, favicon, thumbnail, domain, and contentType (WEB, PDF, YOUTUBE, or AUDIO).prepareIngestForLink enforces plan limits, then uses Next.js after() to run the right handler: ingestWeb, ingestPdf, ingestYoutube, or ingestAudio. Free accounts skip extraction (metadata-only; ingest SKIPPED).PROCESSING β fetch or extract plain text β split into chunks (with a synthetic metadata chunk first) β Vercel AI Gateway embeddings (openai/text-embedding-3-small) β replace LinkContent rows and attach pgvector values β COMPLETED. Failures set ingestFailureReason (SCRAPE_FAILED, LINK_NOT_FOUND, OTHER, etc.) alongside FAILED. Re-ingest reuses the same pipeline without re-scraping listing metadata.Web pages (WEB). Article-style HTML is fetched with safeFetch, parsed in jsdom, and the main content is extracted with Mozilla's Readability (scrapeWebContent). That matches how Firefox's reader mode chooses "the article," but it is not universal: many SPAs and other client-rendered sites return a thin HTML shell to crawlers, so Readability finds little or nothing and ingest may FAIL. A small set of hosts that need a full browser are rejected early (UnsupportedSpaError β ingest SKIPPED).
Realtime subscribers get updates when ingestion finishes via notifyLinksAfterIngest (which calls broadcastLinksChanged).
These are called out explicitly because the repo is going public:
Marketing vs. product: The landing page copy mentions ideas such as collections and a weekly digest. Those are not built in the current schema or app β treat them as roadmap, not shipped features.
@serwist/next), web manifest + precache / offline fallbackAutomation lives under .github/workflows/. Every PR and manual release is gated by these pipelines.
pr-checks.ymlNo reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/purl)<a href="https://allmcps.com/mcp/purl"><img src="https://allmcps.com/api/badge/purl?style=directory" alt="Purl on AllMCPs" /></a>