{% extends "base.html" %} {% block title %}Dashboard — Log Thread{% endblock %} {% block content %}

Welcome to Log Thread

Your code intelligence is ready. Follow the steps below to get started.

Subscription

Quick Start

1

Install the CLI

pip install logthread

Install Log Thread on your development machine.

2

Login & Analyze

logthread login
logthread analyze .

Authenticate and index your codebase.

3

Connect to IDE

logthread serve --watch

Add to your Cursor/Windsurf MCP config.

API Key

Use an API key for headless environments or CI/CD pipelines.

MCP Configuration

Add this to your MCP configuration file:

Cursor / Windsurf / Claude Code

{
  "mcpServers": {
    "logthread": {
      "command": "logthread",
      "args": ["serve", "--watch", "--path", "/path/to/your/project"]
    }
  }
}

Replace /path/to/your/project with the absolute path to your indexed repository.

Your Repositories

No repositories analyzed yet. Run logthread analyze . to get started.
{% endblock %} {% block scripts %} {% endblock %}