🤖

Moltbot

Give your AI assistant a real database

Moltbot stores everything in flat markdown files. Context is lost between sessions, and there is no way to query structured data or share it across agents. The Endpoints skill gives Moltbot a real database — your assistant scans documents, extracts structured data, and queries it via REST API.

The problem

  • Moltbot stores everything in flat markdown files.
  • Context is lost between sessions. There is no way to query structured data or share it across agents.
  • Your AI assistant is brilliant but forgetful.

The solution

  • The Endpoints skill gives Moltbot a real database.
  • Your assistant scans documents, extracts structured data, and queries it via REST API.
  • Living JSON means your agent builds a knowledge base that grows with every interaction.

How it works

Step 1

Give your Moltbot a task

Tell your Moltbot: "Scan this contract and save the key terms"

Step 2

Moltbot scans & extracts

Moltbot uses the Endpoints skill to scan and extract

Step 3

Ask questions later

"What were the payment terms in the Acme contract?"

Step 4

Get precise answers

Moltbot queries /contracts/acme and gives you a precise answer

Sample API response

GET/contracts/acme
{
  "category": "contracts",
  "slug": "acme",
  "data": {
    "parties": [
      "Acme Corp",
      "Your Company"
    ],
    "paymentTerms": "Net 30",
    "effectiveDate": "2026-01-15"
  },
  "updates": {
    "old": [],
    "new": [
      {
        "type": "created",
        "timestamp": "2026-01-15T10:30:00Z",
        "summary": "Initial contract scan"
      }
    ]
  }
}

Install the Endpoints skill

Terminal

# Install the Endpoints skill

molt install github.com/adamkristopher/endpoint-assistant

# Scan a document

molt run endpoints scan ./contract.pdf --category contracts --slug acme

# Query your data

molt run endpoints query /contracts/acme

Ready to get started?

Turn any document into a structured API endpoint. Free to start, no credit card required.

Get Started Free