cd /news/artificial-intelligence/homebound-self-host-your-social-medi… · home topics artificial-intelligence article
[ARTICLE · art-60821] src=github.com ↗ pub= topic=artificial-intelligence verified=true sentiment=· neutral

Homebound – self-host your social-media history, search it, talk to it

Homebound, an open-source self-hosted personal archive tool, allows users to import social media history from platforms like Google+, Facebook, and Twitter/X into a Django blog with semantic search, an MCP server for LLM integration, and a public bot widget. The alpha-stage project, licensed under AGPL-3.0, emphasizes user control and privacy by keeping data on the user's machine.

read3 min views1 publishedJul 15, 2026
Homebound – self-host your social-media history, search it, talk to it
Image: source

Self-hosted personal-archive blog: import your social-media history, search it, talk to it, hand it to your LLM.

Homebound takes the years of content you've scattered across Google+ (RIP), Facebook, and Twitter/X, parks them in a Django blog you control, and gives both humans and language models good ways to find what's in there.

Status: alpha. The maintainer's deployment runs at vyakunin.org; use that as a reference of what the surface looks like. APIs and DB schema may change without notice until Stage 2 ships.

Ingest pipeline— adapters for Google+ Takeout HTML/CSV, Facebook activity-log export (via the bundled browser extension), and Twitter/X export + Wayback Machine reconstructionBrowser extensions(also on the Chrome Web Store):Homebound: Activity Log Exporter(Facebook) andHomebound: Timeline Exporter(X/Twitter) — exportyour owndata to a local ZIP; nothing leaves your machineDjango blog— post listing + detail, tag cloud, full-text search, RSS, JSON-LDBlogPosting

structured data, year-sharded sitemapMarkdown editor— EasyMDE-backed authoring with OG-metadata fetch** Semantic search (Stage 1.3)— Voyage embeddings + pgvector for natural-language queries across your whole archive MCP server (Stage 1/2.7)**— stdio mode for Claude Desktop / Cursor; tools includesearch_posts

,get_post

,on_this_day

,search_media

,get_timeline

,ghostwrite

Public bot widget (Stage 2.5, optional)— a chat surface on your site that answers visitor questions from your public posts, with citations

See docs/HIGH_LEVEL_DESIGN.md for the architecture and

/

docs/STAGE_1_FOUNDATIONS.md

for the roadmap.

docs/STAGE_2_LLM_FEATURES.md

git clone https://github.com/vyakunin/homebound.git
cd homebound
cp .env.example .env   # fill in DB creds + optional API keys
docker compose up -d
bazel build //...
bazel test //tests:all           # the test gate — run the whole package, not a subset
bazel run //:runserver           # localhost:8080

Tests run only through Bazel (bazel test //tests:all

) — not a bare pytest

. The venv below is for one-off management commands, not the test suite.

Management commands run via the venv (Bazel sandbox lacks allauth

's transitive deps):

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements_lock.txt
DJANGO_SETTINGS_MODULE=django_config.settings PYTHONPATH="bazel-bin:." \
  python manage.py import_posts --source google_plus --input-dir ./takeout/

After Phase 3 lands:

{
  "mcpServers": {
    "homebound": {
      "command": "docker",
      "args": ["exec", "-i", "homebound-web", "homebound", "mcp"]
    }
  }
}

Tools available: search_posts

, get_post

, on_this_day

, search_media

, get_timeline

, ghostwrite

.

Key What it unlocks Get from
VOYAGE_API_KEY
Embeddings → semantic search, MCP search_posts , bot RAG

ANTHROPIC_API_KEY_GHOSTWRITER

ghostwrite

tool (private authoring)console.anthropic.comANTHROPIC_API_KEY_PUBLICBOT

Without keys, semantic search + MCP ghostwrite

  • public bot are disabled; the blog and full-text search work without any external service.

The Docker compose in this repo is the generic self-host setup. For your own production deployment (TLS, reverse proxy, backups, monitoring), keep a private overlay repo. The maintainer's overlay is homebound-platform

; treat it as a worked example, not a dependency.

AGPL-3.0. If you host a modified version of Homebound and serve it over the network, you must make your modifications available to your users.

Issues + PRs welcome. Run bazel test //tests:all

before submitting; CI runs the same on every PR.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @homebound 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/homebound-self-host-…] indexed:0 read:3min 2026-07-15 ·