Metadata-Version: 2.4
Name: insight-blueprint
Version: 0.1.0
Summary: MCP server for data science analysis design management
Project-URL: Homepage, https://github.com/etoyama/insight-blueprint
Project-URL: Repository, https://github.com/etoyama/insight-blueprint
Project-URL: Bug Tracker, https://github.com/etoyama/insight-blueprint/issues
Author: insight-blueprint contributors
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: FastAPI
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development
Requires-Python: >=3.11
Requires-Dist: click>=8.1
Requires-Dist: fastapi>=0.115
Requires-Dist: fastmcp>=2.0
Requires-Dist: filelock>=3.24.2
Requires-Dist: packaging>=23.0
Requires-Dist: pydantic>=2.10
Requires-Dist: ruamel-yaml>=0.18
Requires-Dist: uvicorn[standard]>=0.41.0
Provides-Extra: dev
Requires-Dist: poethepoet>=0.31; extra == 'dev'
Requires-Dist: pre-commit>=4.0; extra == 'dev'
Requires-Dist: pytest-cov>=6.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.8; extra == 'dev'
Requires-Dist: ty>=0.0.1; extra == 'dev'
Description-Content-Type: text/markdown

# insight-blueprint

[![CI](https://github.com/etoyama/insight-blueprint/actions/workflows/ci.yml/badge.svg)](https://github.com/etoyama/insight-blueprint/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
[![Python 3.11+](https://img.shields.io/badge/python-3.11%2B-blue.svg)](https://www.python.org/downloads/)

A Python MCP server for hypothesis-driven data analysis. Manage analysis designs, data catalogs, and review workflows through Claude Code or any MCP-compatible client.

## Installation

### From Source (Development)

Requires **Python 3.11+**, **uv**, and **Node.js** (for frontend build).

```bash
git clone https://github.com/etoyama/insight-blueprint.git
cd insight-blueprint
uv sync --all-extras

# Build frontend assets (required for WebUI)
poe build-frontend
```

### From PyPI

> **Note**: Not yet published. Coming soon.

```bash
# Zero-install with uvx
uvx insight-blueprint --project /path/to/analysis

# Or install permanently
uv tool install insight-blueprint
```

## Quick Start

```bash
# 1. Start the server for your analysis project
#    (from source — run from the insight-blueprint repo root)
uv run insight-blueprint --project /path/to/my-analysis

#    Or install as a global tool so you can run from anywhere:
uv tool install -e /path/to/insight-blueprint
insight-blueprint --project /path/to/my-analysis

#    (from PyPI, once published)
#    uvx insight-blueprint --project /path/to/my-analysis

# 2. The server provides MCP tools for Claude Code:
#    - create_analysis_design   — Create hypothesis documents
#    - list_analysis_designs    — Browse existing designs
#    - get_analysis_design      — Retrieve a specific design
#    - add_catalog_entry        — Register data sources
#    - search_catalog           — Search the data catalog
#    - create_review            — Start a design review

# 3. A WebUI dashboard opens automatically at http://127.0.0.1:3000
```

## Features

### MCP Tools

insight-blueprint exposes tools via the [Model Context Protocol](https://modelcontextprotocol.io/), allowing AI assistants to manage your analysis workflow:

- **Analysis Design** -- Create, update, and track hypothesis-driven analysis documents stored as YAML files
- **Data Catalog** -- Register and search data sources (CSV, API, SQL) with schema information
- **Review Workflow** -- Structured review process for analysis designs
- **Validation Rules** -- Automated quality checks on designs and catalog entries

### WebUI Dashboard

A browser-based dashboard (http://127.0.0.1:3000) provides:

- Overview of all analysis designs and their statuses
- Data catalog browser
- Review tracking

### Bundled Skills

When you run `insight-blueprint --project <path>`, skill templates are copied to `.claude/skills/` in your project:

- `/analysis-design` -- Guided workflow for creating hypothesis documents
- `/analysis-journal` -- Record reasoning steps during analysis (observations, evidence, decisions, questions)
- `/analysis-reflection` -- Structured reflection to draw conclusions or branch hypotheses
- `/catalog-register` -- Step-by-step data source registration
- `/data-lineage` -- Track data transformations and export lineage diagrams (Mermaid)

Skills support both English and Japanese trigger phrases.

### Analysis Workflow

Skills chain together to support the full hypothesis-driven analysis lifecycle:

```
/analysis-design (create hypothesis)
    ↓
/analysis-journal (record reasoning: observe → hypothesize → evidence → decide)
    ↓
/analysis-reflection (reflect → conclude or branch)
    ↓
/catalog-register (register findings as domain knowledge)
```

Each design has an `analysis_intent` field (`exploratory`, `confirmatory`, or `mixed`) to distinguish whether you're testing a specific hypothesis or exploring data for patterns. The Insight Journal (`.insight/designs/{id}_journal.yaml`) tracks your reasoning process with 8 event types mapped to the Narrative Scaffolding framework (Huang+ IUI 2026).

## CLI Options

```bash
insight-blueprint --project /path/to/project   # Specify project directory
insight-blueprint --headless                    # Suppress browser auto-open
insight-blueprint                               # Use current directory
```

## Development

```bash
poe all   # Run lint + typecheck + test
```

See [CONTRIBUTING.md](CONTRIBUTING.md) for setup instructions, code style, and how to submit pull requests.

### Tech Stack

| Tool | Purpose |
|------|---------|
| **uv** | Package management |
| **ruff** | Linting and formatting |
| **ty** | Type checking |
| **pytest** | Testing |
| **FastMCP** | MCP server framework |
| **FastAPI** | WebUI backend |

## License

MIT
