Skip to main content
PromptQuorum
Home/Power Local LLM/Blinko Review 2026: Self-Hosted AI Notes with RAG Search
Productivity & Knowledge Tools

Blinko Review 2026: Self-Hosted AI Notes with RAG Search

Β·11 min readΒ·By Hans Kuepper Β· Founder of PromptQuorum, multi-model AI dispatch tool Β· PromptQuorum

Blinko is a free, open-source, self-hosted note-taking app (blinko.space, source at github.com/blinkospace/blinko) that stores notes as plain Markdown and adds AI-powered RAG (retrieval-augmented generation) search so you can find notes by asking a question instead of guessing the right keyword. The self-hosted edition is licensed under GPL-3.0 and costs nothing to run; a separate, paid Blinko Cloud managed hosting option exists for people who do not want to run their own server. Blinko runs via Docker on your own machine or server, and its AI features (RAG search, note expansion, card conversations) call an LLM/embedding provider you configure yourself β€” typically an OpenAI-compatible API, with support for connecting a self-hosted Ollama endpoint as well.

Blinko (blinko.space, source code at github.com/blinkospace/blinko) is an open-source, self-hosted note-taking app built around a "capture first, organize later" workflow, with a built-in retrieval-augmented generation (RAG) system that lets you search your own notes using plain-language questions instead of exact keyword matches. It ships as a Docker container you run on your own server, storing notes as plain Markdown text, and connects to an AI provider of your choice for the RAG search, note expansion, and card-conversation features. This review covers what Blinko actually does, how it is licensed, how to install it, and how it compares to other self-hosted note and bookmark tools that add AI on top.

Key Takeaways

  • Blinko is free and open-source; the self-hosted edition is GPL-3.0 licensed
  • Core workflow: capture a quick note or "card," then optionally use AI to expand, polish, or convert it into a fuller note later
  • Built-in RAG search lets you query your own notes in natural language rather than exact-keyword search
  • AI features (RAG search, note expansion, card conversations) call an AI provider you configure β€” OpenAI-compatible APIs, LiteLLM as a gateway, or a self-hosted model β€” the AI provider is not bundled with Blinko itself
  • Notes are stored as plain Markdown text, with attachments and file organization
  • Runs via Docker; also distributed as native desktop/mobile builds through Tauri for macOS, Windows, Linux, and Android
  • GitHub repository (github.com/blinkospace/blinko) shows roughly 11,000 stars as of September 2026
  • A separate paid option, Blinko Cloud, offers managed hosting for people who do not want to run their own server; the self-hosted edition remains fully free

πŸ“ In One Sentence

Blinko is a free, open-source, self-hosted note-taking app that stores notes as plain Markdown and adds AI-powered RAG search, so you can find past notes by asking a question instead of remembering the exact keyword.

πŸ’¬ In Plain Terms

Instead of a cloud notes app that stores your data on someone else's server, Blinko is software you run yourself (via Docker) on your own computer or server. It works like a normal quick-notes app, but it also lets you ask "what did I write about X?" and get an AI-generated answer pulled from your own notes, because it indexes them with an AI embedding model you configure.

πŸ“ŒNote: This review is the deep-dive companion to Blinko's entry in the Local LLM Software Directory β€” see that page for how Blinko compares at a glance to dozens of other local and self-hosted AI tools.

What Is Blinko?

Blinko is a self-hosted note-taking app built around quickly capturing rough thoughts, then optionally using AI to organize or search them later. Its own GitHub description calls it "an AI-powered card note-taking project" for people who want to capture ideas fast without losing them in folder hierarchies. The project follows what its own site describes as a "Capture β†’ Grow β†’ Share" workflow: jot down a rough "card," ask AI to expand or polish it into a fuller note when you are ready, and optionally publish selected notes to a personal blog.

  • Core function: a self-hosted note-capture app with plain-Markdown storage, full-text search, and AI-powered RAG semantic search over your own notes
  • AI/RAG search: retrieval-augmented generation lets you ask a natural-language question and get an answer pulled from your own note content, rather than only matching exact keywords
  • Tech stack, per the GitHub repository: TypeScript, React and Next.js on the frontend, with the self-hosted server backed by PostgreSQL and a local LibSQL vector store for embeddings; Tauri is used for the native desktop and Android builds
  • License: GPL-3.0 for the self-hosted, open-source edition
  • Developer/organization: the blinkospace GitHub organization β€” the repository history shows the project was previously hosted under a "blinko-space" org name before the current "blinkospace" naming
  • Canonical repository: github.com/blinkospace/blinko β€” the current, active home of Blinko's source code, releases, and issue tracker

Blinko's Project History and Version Milestones

Blinko has shipped frequent, incremental releases throughout 2025 and 2026, per its GitHub releases page, adding security hardening, AI-provider flexibility, and MCP (Model Context Protocol) support along the way. The releases below are a representative sample, not an exhaustive list β€” check the releases page directly for the full history and anything shipped after this review's publish date.

  1. 1
    v1.7.1 β€” December 17, 2025: Drag-and-drop and global search refinements
    Why it matters: Interface polish to the card-based note interface and how global search behaves.
  2. 2
    v1.8.0 β€” December 21, 2025: Scheduled AI tasks and MCP server management
    Why it matters: Added job-queue infrastructure (pg-boss) for scheduled AI tasks and added MCP server management, an early step toward tool/agent integrations.
  3. 3
    v1.8.1 β€” January 1, 2026: Server-side AI model fetching for Docker networking
    Why it matters: Moved AI provider model-list fetching to the server side specifically to fix Docker network compatibility issues β€” relevant if you self-host behind a reverse proxy or in an isolated Docker network.
  4. 4
    v1.8.4 β€” January 27, 2026: Security fixes for path traversal and access control
    Why it matters: Addressed file-deletion and comment access-control issues β€” worth applying promptly on any self-hosted instance exposed beyond localhost.
  5. 5
    v1.8.5 β€” February 6, 2026: Trash/recovery feature added
    Why it matters: Added a trash/undo mechanism for deleted notes, plus plugin file-access hardening.
  6. 6
    v1.8.7 β€” April 12, 2026: MiniMax established as a primary LLM provider option
    Why it matters: Broadened first-class AI-provider support alongside file-upload security improvements.
  7. 7
    v1.8.8 β€” June 20, 2026: LiteLLM gateway support and streamable HTTP MCP
    Why it matters: Added LiteLLM as an AI-gateway provider option (useful for routing to many backends through one config) and upgraded MCP support to the streamable-HTTP transport β€” the most recent milestone this review could verify on the [official releases page](https://github.com/blinkospace/blinko/releases).

What Can You Do With Blinko?

Blinko's feature set centers on fast note capture with plain-text storage, plus an AI layer for search and writing assistance that you connect yourself. Here is what each part actually does, per Blinko's own GitHub README and documentation.

  • Quick capture cards β€” jot down a rough thought as a "card" without deciding on folders, tags, or structure up front; organize or convert it into a fuller note later
  • AI-powered RAG search β€” ask a natural-language question and Blinko retrieves and summarizes relevant content from your own notes using a configured AI provider's embedding and completion models
  • AI note expansion β€” select rough or incomplete text in a note and ask AI to expand, polish, or rewrite it
  • Plain Markdown storage β€” notes are stored as Markdown with full Markdown formatting support, avoiding lock-in to a proprietary note format
  • File and attachment organization β€” attach and organize files alongside notes
  • AI provider flexibility β€” connect an OpenAI-compatible API, route through LiteLLM as a gateway to many backends, or point Blinko at a self-hosted model endpoint such as Ollama; verify current provider compatibility in the official documentation before relying on a specific one
  • Model Context Protocol (MCP) support β€” Blinko can act as an MCP server, added in v1.8.0 and upgraded to streamable-HTTP transport in v1.8.8, for connecting Blinko to MCP-compatible AI tools
  • Multi-platform access β€” a self-hosted web app plus native builds (via Tauri) for macOS, Windows, Linux, and Android, so notes stay in sync across devices you control

Usage Examples: Three Ways to Use Blinko

These are concrete workflows built from Blinko's documented features above β€” not hypothetical use cases.

Blinko Pricing: Self-Hosted vs. Blinko Cloud

The self-hosted edition of Blinko is completely free β€” github.com/blinkospace/blinko is GPL-3.0 licensed, with no feature gated behind payment in the source code itself. Blinko Cloud, a separate managed-hosting service, exists for people who want Blinko's functionality without running their own server; per Blinko's own site, revenue from Blinko Cloud helps fund the open-source project's ongoing development.

Self-hosted (open source)

Cost:
Free β€” GPL-3.0, run via Docker on your own server; no usage limits imposed by Blinko itself

Blinko Cloud (managed hosting)

Cost:
Paid managed offering β€” check blinko.space directly for current plans and pricing, which this review does not reproduce since pricing pages change independently of the software

AI provider costs (either edition)

Cost:
Not included in Blinko itself β€” if you connect a cloud AI provider (OpenAI, MiniMax, etc.), you pay that provider directly for API usage; a self-hosted model like Ollama avoids this cost entirely

This review does not cite specific Blinko Cloud price points, since pricing pages are updated independently of the software and can go stale quickly in a review. Check blinko.space directly for current Blinko Cloud pricing before deciding between self-hosting and the managed option.

Blinko vs. Karakeep

Blinko and Karakeep are both open-source, self-hosted knowledge tools that add AI on top of a simple core function, but they start from different primitives: Blinko is a note-taking app first, while Karakeep is a bookmark manager first. Both use AI to make your own saved content searchable and organized in ways plain storage cannot.

Core primitive

Blinko:
Quick-capture note "cards," Markdown storage
Karakeep:
Saved bookmarks/links, with auto-tagging

AI provider

Blinko:
Configurable β€” OpenAI-compatible, LiteLLM, self-hosted models
Karakeep:
Configurable β€” see the dedicated Karakeep review for specifics

Deployment

Blinko:
Docker, self-hosted; also native Tauri builds
Karakeep:
Docker, self-hosted

License

Blinko:
GPL-3.0
Karakeep:
See the dedicated Karakeep review for current license details

Managed hosting option

Blinko:
Yes β€” Blinko Cloud (paid)
Karakeep:
See the dedicated Karakeep review for current details

If your main need is capturing and organizing your own written thoughts, Blinko's note-first design fits better. If your main need is saving and later retrieving links you find while browsing, Karakeep's bookmark-first design fits better β€” see the full Karakeep review for details this table does not cover.

Who Should Use Blinko?

Whether Blinko fits depends on whether you want a self-hosted, AI-searchable note app and are comfortable running a Docker container, or would rather use a note app that stores data on someone else's server.

Blinko vs. Other Self-Hosted Notes and Bookmark Apps

Blinko is one of several self-hosted tools adding AI-powered search and organization on top of personal knowledge capture. Here is how it sits next to other options in that space β€” see the Local LLM Software Directory for the full catalog, and the dedicated Blinko vs. Karakeep comparison above for the closest head-to-head.

  • Karakeep β€” a self-hosted bookmark manager with AI auto-tagging; see the dedicated comparison section above and the Karakeep review for full details.
  • Joplin AI Agent β€” an AI agent layered on top of Joplin, the established open-source note-taking app, rather than a from-scratch AI-native tool like Blinko; see the Joplin AI Agent review.
  • Logseq Copilot β€” an AI assistant for Logseq, a local-first, outliner-style notes tool with a different note structure than Blinko's card-based capture; see the Logseq Copilot review.
  • Smart Connections β€” an AI-powered RAG plugin for Obsidian, aimed at users who already have an established Obsidian vault rather than starting fresh with a new note app; see the Smart Connections review.

Common Mistakes When Evaluating Blinko

Most confusion about Blinko comes from assuming its AI features run fully offline by default, mixing it up with a bookmark manager, or missing the difference between the free self-hosted edition and paid Blinko Cloud.

Frequently Asked Questions

What is Blinko?

Blinko (blinko.space, source at github.com/blinkospace/blinko) is a free, open-source, self-hosted note-taking app that stores notes as plain Markdown and adds AI-powered RAG search so you can find your own notes by asking a natural-language question.

Is Blinko free?

The self-hosted, open-source edition of Blinko is free, licensed under GPL-3.0. Blinko Cloud is a separate, paid managed-hosting option for people who do not want to run their own server β€” check blinko.space for current pricing.

Is Blinko open source? What license does it use?

Yes. Blinko's self-hosted edition is licensed under GPL-3.0, confirmed via the LICENSE file in its GitHub repository.

Does Blinko run fully offline?

Blinko itself is self-hosted, so your note data lives on your own server. However, the AI-powered RAG search, note expansion, and card-conversation features call an AI provider you configure β€” by default this may be a cloud API such as OpenAI-compatible endpoints or MiniMax, though you can point Blinko at a self-hosted model endpoint like Ollama instead. Verify your own AI-provider configuration if a fully offline setup matters to you.

What AI providers does Blinko support?

Per Blinko's release history, it supports OpenAI-compatible APIs, MiniMax as a primary LLM provider option, and LiteLLM as a gateway for routing to many backends through one configuration; self-hosted endpoints such as Ollama can also be connected. Check the current documentation for the up-to-date provider list, since this has expanded across recent releases.

How do I install Blinko?

Blinko is self-hosted via Docker. The official one-line install script is curl -s https://raw.githubusercontent.com/blinkospace/blinko/main/install.sh | bash, or you can use the docker-compose.yml files in the GitHub repository for manual setup. Native desktop and Android builds are also distributed via Tauri.

What platforms does Blinko support?

The self-hosted server runs via Docker on any machine that can run Docker containers (macOS, Windows, Linux, or a cloud server). Blinko also ships native builds through Tauri for macOS, Windows, Linux, and Android, and is usable from any mobile browser as a web app.

What is the difference between Blinko and Blinko Cloud?

The self-hosted, open-source edition of Blinko is free and runs on infrastructure you control. Blinko Cloud is a separate, paid managed-hosting service for people who want Blinko's functionality without running their own server; per Blinko's own site, revenue from Blinko Cloud helps fund the open-source project.

How is Blinko different from Karakeep?

Blinko is a note-taking app built around quick-capture cards and Markdown storage, with AI-powered RAG search over your own notes. Karakeep is a bookmark manager built around saving and auto-tagging links. Both are self-hosted and AI-enhanced, but they start from different core primitives β€” see the dedicated comparison section above.

Does Blinko support the Model Context Protocol (MCP)?

Yes. Blinko added MCP server management in v1.8.0 (December 2025) and upgraded to streamable-HTTP MCP transport in v1.8.8 (June 2026), per the official releases page.

Sources

← Back to Power Local LLM