BASB · PARA · PKM

The AI second brain
for your bookmarks.

Building a second brain is about capturing knowledge where it lives — and a huge chunk of it lives in URLs. Link Crypt is the link layer of your second brain: save from anywhere, let AI auto-tag it, and feed the whole library to Claude, ChatGPT, and Obsidian over a REST API.

Built for BASB • PARA-friendly tagging • Cryptie AI auto-tags • REST API + MCP • Obsidian-ready

Link Crypt second brain interface showing saved links with AI-suggested tags, advanced search filters, and dark UI

Cryptie auto-suggested tags: ai, research, obsidian, productivity — matching your existing vocabulary

Why your second brain needs a link layer

Tiago Forte's Building a Second Brain popularised the C.O.D.E. framework: Capture, Organize, Distill, Express. Most tools handle notes well. Links are another story.

Browser bookmarks are untagged and unsearchable. Read-later apps like Instapaper get overwhelming. And none of them expose an HTTP API your AI assistant can query at 2 am when you're writing.

Link Crypt is purpose-built for the URL slice of your second brain: capture via Chrome extension, iOS, or API → Cryptie AI suggests tags from context → search with tag: and domain: → feed to Claude, ChatGPT, or Obsidian via REST API. Every step of C.O.D.E., for links.

C.O.D.E. for every link you save

📥
Capture

Chrome extension, iOS share sheet, web app, or POST /links. One click from wherever you are.

🏷️
Organize

Cryptie reads the page and proposes tags from your vocabulary. PARA folders → tags. Zero manual filing.

🔎
Distill

Advanced search surfaces the right links fast. tag:ai domain:arxiv.org in milliseconds across 100k links.

🤖
Express

REST API + MCP server. Claude, ChatGPT, Obsidian, n8n, and your own agents share the same library. One Bearer token.

PARA-style organisation with tags

Tiago Forte's PARA method (Projects, Areas, Resources, Archives) maps naturally to Link Crypt tags. Tag a link project:launch or area:health and filter for it instantly. Cryptie can suggest these tags automatically based on page content.

project:launchproject:researcharea:healtharea:financeresource:airesource:designarchive:2025tag:obsidiantag:basbtag:paradomain:arxiv.org

Your second brain's nervous system

One API key connects your Link Crypt library to every tool in your PKM + AI stack. Read, write, and search from anywhere.

View all integrations & REST API docs →

One-shot agent prompt

Sample SKILL.md for Link Crypt

Paste this into Claude Code, an agent skill folder, or any tool that accepts custom instructions. Replace YOUR_LINKCRYPT_API_KEY with a key from Preferences.

---
name: linkcrypt-second-brain
description: Search, save, tag, and summarize the user's Link Crypt library over the getlinkcrypt.com REST API. Use this whenever the user asks about saved links, research sources, bookmarks, URLs, second-brain context, PARA tags, or adding a link to their library.
---

# Link Crypt API Skill

Link Crypt is the user's private URL layer for their AI second brain. It stores links, titles, descriptions, domains, tags, favorites, and read state. Use it to retrieve sources, save new URLs, and keep research organized.

## Configuration

Base URL: https://getlinkcrypt.com/api/v1
Auth header: Authorization: Bearer YOUR_LINKCRYPT_API_KEY
Content type: application/json

The user can create an API key in Link Crypt > Preferences > API keys. Never expose or commit the real key. Prefer an environment variable such as LINKCRYPT_API_KEY when your runtime supports it.

## When to use this skill

Use Link Crypt when the user asks to:
- Find, search, or summarize saved links.
- Retrieve sources for a topic, project, article, or research question.
- Save a URL into their library.
- Add or clean up tags.
- Build PARA-style views such as project:launch, area:health, resource:ai, or archive:2025.
- Feed a writing, coding, or research task with links the user has already saved.

## Search patterns

Use GET /search for keyword and advanced search:

curl -s "https://getlinkcrypt.com/api/v1/search?q=tag:ai%20domain:arxiv.org&limit=10" \
  -H "Authorization: Bearer YOUR_LINKCRYPT_API_KEY"

Useful query syntax:
- tag:ai
- domain:github.com
- title:rust
- description:embeddings
- tag:project:launch domain:docs.example.com

Use GET /links for browsing or filtering:

curl -s "https://getlinkcrypt.com/api/v1/links?tags=ai,research&limit=20" \
  -H "Authorization: Bearer YOUR_LINKCRYPT_API_KEY"

Use GET /links/:id for a specific saved link.

## Usage limits and efficiency

API calls are not unlimited. Be a careful token and request budget user:

- Prefer one targeted search over several broad searches.
- Use specific filters such as tag:, domain:, title:, and limit=5-10 before asking for more.
- Do not repeatedly fetch the same link or tag list in one conversation; reuse results already available in context.
- When the user asks a broad question, search once, summarize the top results, then ask whether to continue.
- Request only the fields or result count needed for the task when the API supports it.
- Batch related work: collect several URLs/tags from the user, then save or tag them in a small number of calls.
- Avoid calling stats, digest, or maintenance endpoints unless the user asks for analysis or cleanup.
- If you hit a rate or monthly usage limit, explain that API usage is metered and suggest narrowing the task or trying again later.

## Save a link

When saving a URL, include tags if the user provides them or if obvious from context. Prefer the user's existing tag style.

curl -s -X POST "https://getlinkcrypt.com/api/v1/links" \
  -H "Authorization: Bearer YOUR_LINKCRYPT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com/article",
    "title": "Optional title",
    "description": "Optional short note",
    "tags": ["resource:ai", "research"]
  }'

## Tags

List tags:

curl -s "https://getlinkcrypt.com/api/v1/tags" \
  -H "Authorization: Bearer YOUR_LINKCRYPT_API_KEY"

Add a tag to a link:

curl -s -X POST "https://getlinkcrypt.com/api/v1/links/LINK_ID/tags" \
  -H "Authorization: Bearer YOUR_LINKCRYPT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"project:launch"}'

## Analysis

Get library stats:

curl -s "https://getlinkcrypt.com/api/v1/analyze/stats" \
  -H "Authorization: Bearer YOUR_LINKCRYPT_API_KEY"

Create a digest:

curl -s -X POST "https://getlinkcrypt.com/api/v1/analyze/digest" \
  -H "Authorization: Bearer YOUR_LINKCRYPT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"period":"week"}'

## Behavior rules

- Cite saved links by title and URL when using them as sources.
- When search returns many results, summarize the top results and ask whether the user wants a narrower filter.
- Reuse the user's existing tags whenever possible.
- Do not delete links or tags unless the user explicitly asks for deletion.
- If an API request fails, report the status/error and suggest checking the API key or subscription state.
- Keep API keys out of transcripts, commits, screenshots, and shared documents.

## Example user prompts

- "Search my Link Crypt for links about vector databases and summarize the strongest sources."
- "Save this URL to Link Crypt with tags project:launch and resource:marketing."
- "Find everything I saved from arxiv.org about agents."
- "Show my most-used tags and suggest a PARA cleanup."
- "Use my saved links to draft a reading list for this project."

Never commit real API keys. Use environment variables or your agent's secret storage for production workflows.

100k
links per library
4
AI integrations (Claude, ChatGPT, Obsidian, n8n)
$3.99
per month — less than a coffee

Simple pricing for serious second brains

No lock-in. Full export anytime. One plan, everything included.

Monthly
$3.99/mo
or
Annual Save 58%
$19.99/yr
  • 100,000 links
  • Cryptie AI auto-tagging
  • REST API + MCP server
  • Unlimited tags
  • Advanced search filters
  • Chrome extension + iOS app
  • Full CSV / JSON export
  • Priority support (annual)
Start building for free

Free trial included · No credit card required to start

Frequently asked questions

What is an AI second brain for bookmarks?
An AI second brain for bookmarks is a link library that doesn't just store URLs — it organises them automatically with AI, surfaces them through search, and exposes them to your AI tools (Claude, ChatGPT, Obsidian) over an API. Link Crypt is built exactly for this: capture → Cryptie auto-tags → search → your agents read and write the same library.
How does Link Crypt fit into Building a Second Brain (BASB)?
Tiago Forte's BASB methodology is built around the C.O.D.E. framework — Capture, Organize, Distill, Express. Link Crypt handles the URL slice of that workflow: Capture via Chrome extension or API; Organize with Cryptie AI auto-tagging that mirrors PARA categories as tags; Distill with advanced search; Express by feeding your library to Claude, ChatGPT, or Obsidian. Your notes live in Obsidian or Notion — your links live in Link Crypt.
Can I use PARA method tags inside Link Crypt?
Yes. Tag links using any convention — project:launch, area:health, resource:ai, or plain obsidian. Cryptie AI will learn your tag vocabulary and suggest matching tags automatically. Then filter with tag:project:launch for instant PARA-scoped views.
How does Cryptie AI auto-tagging work?
When you save a link, Cryptie fetches the page title and description, reviews your existing tag vocabulary, and suggests the most relevant tags. It matches your vocabulary — not generic categories — so if you already use ai, research, and python, Cryptie suggests those rather than making up new ones.
Does Link Crypt connect to Claude, ChatGPT, and Obsidian?
Yes. Link Crypt ships a REST API and MCP server. Generate a Bearer token in Preferences and follow the integration guides for Claude & Claude Code, ChatGPT Custom GPT, or Obsidian + AI. Your agents can search, read, and add links programmatically.
How is Link Crypt different from Obsidian Bookmarks or Raindrop.io?
Obsidian Bookmarks is local-only with no HTTP API — it can't be queried by Claude Code or a remote agent. Raindrop.io has a good UI but no AI auto-tagging and no MCP server out of the box. Link Crypt is purpose-built for the API-first, AI-second-brain use case: Cryptie AI tagging, a full OpenAPI spec, and MCP support from day one.
Can I import my existing bookmarks and second brain links?
Yes. Link Crypt supports import from Pocket, Instapaper, browser HTML exports (Chrome, Safari, Firefox, Edge), and direct CSV/JSON. All tags and metadata are preserved. After import, Cryptie can re-tag your library in bulk.
How much does Link Crypt cost?
Link Crypt costs $3.99/month or $19.99/year. All features — Cryptie AI, REST API, MCP server, unlimited tags, advanced search, and full export — are included in one plan. No tiered feature gating.

Ready to build your AI second brain?

Start free. Import your existing bookmarks. Connect Claude or Obsidian in minutes.