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

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
Chrome extension, iOS share sheet, web app, or POST /links. One click from wherever you are.
Cryptie reads the page and proposes tags from your vocabulary. PARA folders → tags. Zero manual filing.
Advanced search surfaces the right links fast. tag:ai domain:arxiv.org in milliseconds across 100k links.
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.
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.
Ask Claude about links you've saved. Use Claude Code to add new URLs to your library. MCP + REST.
Build a Custom GPT that reads your library. Use Actions + Bearer token to search by tag, domain, or keyword.
Pull tagged links into Obsidian notes via Dataview + REST. Connect your URL layer to your knowledge graph.
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.
Simple pricing for serious second brains
No lock-in. Full export anytime. One plan, everything included.
- ✓ 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)
Free trial included · No credit card required to start
Frequently asked questions
What is an AI second brain for bookmarks?
How does Link Crypt fit into Building a Second Brain (BASB)?
Can I use PARA method tags inside Link Crypt?
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?
ai, research, and python, Cryptie suggests those rather than making up new ones.Does Link Crypt connect to Claude, ChatGPT, and Obsidian?
How is Link Crypt different from Obsidian Bookmarks or Raindrop.io?
Can I import my existing bookmarks and second brain links?
How much does Link Crypt cost?
Ready to build your AI second brain?
Start free. Import your existing bookmarks. Connect Claude or Obsidian in minutes.