Skip to main content

A search engine for Lean 4 declarations.

Project description

LeanExplore

A search engine for Lean 4 declarations

PyPI version Read the Paper last update license

A search engine for Lean 4 declarations. This project provides tools and resources for exploring the Lean 4 ecosystem. Lean Explore enables semantic search across multiple Lean projects including Mathlib, Batteries, Std, PhysLean, Init, and Lean, helping you discover relevant theorems, definitions, and other declarations using natural language queries.

Features

  • 🔍 Semantic Search: Find Lean declarations using natural language queries
  • 📚 Multi-Project Support: Search across Mathlib, Batteries, Std, PhysLean, Init, and Lean
  • 🚀 Multiple Interfaces: Use via CLI, Python API, HTTP server, or MCP server
  • 🏠 Local Backend: Run searches locally with your own data (no API key required)
  • 🔗 Dependency Tracking: Explore relationships between declarations
  • 📊 Ranked Results: Results are ranked using semantic similarity, PageRank, and lexical matching

Installation

Install from PyPI:

pip install lean-xplore

Requirements

  • Python 3.10 or higher
  • pip (Python package installer)

Quick Start

Getting an API Key

To use the remote API, you'll need an API key. API keys can be obtained from https://www.leanexplore.com. Once you have your API key, configure it using:

leanexplore configure api-key --api-key YOUR_API_KEY

Alternatively, you can run leanexplore configure api-key without arguments and it will prompt you for the key, or use the local backend without an API key (see Local Backend below).

Command Line

Search for Lean declarations:

# Basic search
leanexplore search "natural numbers"

# Search with package filters (limit results to specific packages)
leanexplore search "monoid" --package Mathlib --package Batteries

# Limit the number of results
leanexplore search "topology" --limit 5

The CLI will automatically use your configured API key. Note: The search command does not support a --backend flag. To use the local backend, you need to run a local HTTP server (see Local Backend below) and configure the client to use it.

Python API

import asyncio
from lean_explore.api.client import Client

async def main():
    # Initialize client with API key
    client = Client(api_key="your-api-key")
    
    # Perform a search
    results = await client.search("natural numbers")
    
    # Display results
    print(f"Found {len(results.results)} results")
    for item in results.results[:5]:
        lean_name = item.primary_declaration.lean_name if item.primary_declaration else "N/A"
        print(f"{lean_name}")
        if item.informal_description:
            print(f"  {item.informal_description[:100]}...")

asyncio.run(main())

You can also search multiple queries at once:

async def main():
    client = Client(api_key="your-api-key")
    
    # Search multiple queries
    results = await client.search([
        "natural numbers",
        "group theory",
        "topology"
    ])
    
    for result in results:
        print(f"\nQuery: {result.query}")
        print(f"Results: {len(result.results)}")

asyncio.run(main())

Local Backend

Run searches locally without an API key. This is useful for offline access, faster queries, or when you want full control over the data.

# Download local data (database, embeddings, and search index)
leanexplore data fetch

# Start local HTTP server
leanexplore http serve --backend local

The server will be available at http://localhost:8001/api/v1 (default port is 8001). You can query it via HTTP or use the Python client:

import asyncio
from lean_explore.api.client import Client

async def main():
    # Connect to local server
    client = Client(base_url="http://localhost:8001/api/v1")
    
    # Use as normal (no API key needed)
    results = await client.search("natural numbers")
    print(f"Found {len(results.results)} results")

asyncio.run(main())

Additional Features

  • MCP Server: Integrate with AI agents using the Model Context Protocol

    leanexplore mcp serve --backend api --api-key YOUR_API_KEY
    
  • HTTP Server: Run your own API server

    leanexplore http serve --backend local
    
  • AI Chat: Interact with an AI agent that can search Lean code

    leanexplore chat --backend api --lean-api-key YOUR_API_KEY
    

Documentation

For detailed documentation, API reference, configuration options, and more examples, visit https://kellyjdavis.github.io/lean-explore.

The documentation includes:

  • Complete installation and setup guides
  • Detailed CLI usage and options
  • Python API reference with examples
  • HTTP server configuration
  • MCP server integration
  • Local backend setup and data management
  • Development guides and contributing information

This code is distributed under an Apache License (see LICENSE).

Cite

If you use LeanExplore in your research or work, please cite it as follows:

General Citation:

Justin Asher. (2025). LeanExplore: A search engine for Lean 4 declarations. LeanExplore.com. (GitHub: https://github.com/justincasher/lean-explore).

BibTeX Entry:

@software{Asher_LeanExplore_2025,
  author = {Asher, Justin},
  title = {{LeanExplore: A search engine for Lean 4 declarations}},
  year = {2025},
  url = {http://www.leanexplore.com},
  note = {GitHub repository: https://github.com/justincasher/lean-explore}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lean_xplore-0.4.3.tar.gz (225.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lean_xplore-0.4.3-py3-none-any.whl (316.6 kB view details)

Uploaded Python 3

File details

Details for the file lean_xplore-0.4.3.tar.gz.

File metadata

  • Download URL: lean_xplore-0.4.3.tar.gz
  • Upload date:
  • Size: 225.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for lean_xplore-0.4.3.tar.gz
Algorithm Hash digest
SHA256 1e4136b83e944a28b1cb9494f6c374a166df2e1b1ef8a199b7f9e18c2bf7396e
MD5 1a2fbe0c836bc2215e7539916409cb19
BLAKE2b-256 9ed66fe11f3ba1810dcb09fca9b9887b78676f2a9ee6639e541679037f5269cc

See more details on using hashes here.

File details

Details for the file lean_xplore-0.4.3-py3-none-any.whl.

File metadata

  • Download URL: lean_xplore-0.4.3-py3-none-any.whl
  • Upload date:
  • Size: 316.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for lean_xplore-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d1a80ea97e65b16f63ee95884535717952530f644b0fcde441e647a97ec371a7
MD5 56bc03cba8c51c509d8eac3dde68ac66
BLAKE2b-256 ad9422893a59c2debeb2b4476fbb91f6534562c5a384c1b5853a5e13198e8a05

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page