Stop losing your AI context. Own it.

Microhost is a local-first agent runtime. Your chats, your code, your memory structured, persistent, and yours. No throttling. No black box. No surprise bills.

The AI-native code editor that gets it exactly right. No approximation. No bloat. Just perfect code, every time.

//

Core features

Your dev brain.
Structured and reusable.

ChatSync

Your Claude Code and Copilot sessions, ingested and indexed. Search across every conversation you've ever had with an AI about your code. $5/mo.

ChatSync

Your Claude Code and Copilot sessions, ingested and indexed. Search across every conversation you've ever had with an AI about your code. $5/mo.

Local-first runtime

A Dockerized control plane that mounts your filesystem, scans your repos, and runs agents on your machine. One-time $30. Your code never leaves unless you say so.

Local-first runtime

A Dockerized control plane that mounts your filesystem, scans your repos, and runs agents on your machine. One-time $30. Your code never leaves unless you say so.

Memory engine

Microhost watches how you actually work — recurring intents, common tasks, decisions you keep remaking — and surfaces them back. "You often do X. Want to automate it?"

//

Use cases

One runtime. Every workflow.

  • import { NextApiRequest, NextApiResponse } from 'next'
    import { supabase } from '@/lib/supabase'
    
    export default async function handler(
      req: NextApiRequest, 
      res: NextApiResponse
    ) {
      if (req.method === 'GET') {
        // AI suggestion: Add pagination and filtering
        const { data, error } = await supabase
          .from('products')
          .select('*')
          .order('created_at', { ascending: false })
        
        if (error) return res.status(500).json({ error })
        return res.status(200).json(data)
      }
    }

    Debugging and refactoring

    Build frontend and backend seamlessly. Exact understands your entire stack—from React components to database queries.

  • export function validateEmail(email: string): boolean {
      const regex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/
      return regex.test(email)
    }
    
    export function validatePassword(password: string): boolean {
      // ⚠️ Error: 'lenght' is not a property of string
      if (password.lenght < 8) {  // ← Ligne 8 avec erreur
        return false
      }
      return /[A-Z]/.test(password) && /[0-9]/.test(password)
    }

    Debugging and refactoring

    Find bugs instantly with precise error detection. Refactor with AI that understands dependencies across your entire codebase.

  • import Stripe from 'stripe'
    
    const stripe = new Stripe(process.env.STRIPE_SECRET_KEY!, {
      apiVersion: '2023-10-16'
    })
    
    // AI suggestion: Add webhook handler
    export async function createPaymentIntent(amount: number) {
      try {
        const paymentIntent = await stripe.paymentIntents.create({
          amount: amount * 100, // Convert to cents
          currency: 'usd',
          automatic_payment_methods: { enabled: true }
        })
        
        return { clientSecret: paymentIntent.client_secret }
      } catch (error) {
        // Ghost text: Handle Stripe errors properly
        throw new Error(`Payment failed: ${error.message}`)
      }
    }

    API integration

    Connect to any API in minutes. Exact generates type-safe requests, handles authentication, and suggests error handling.

  • import { validateEmail, hashPassword } from '../utils/auth'
    
    describe('Authentication', () => {
      describe('validateEmail', () => {
        it('should accept valid email addresses', () => {
          expect(validateEmail('user@example.com')).toBe(true)
          expect(validateEmail('test+tag@domain.co.uk')).toBe(true)
        })
        
        it('should reject invalid email addresses', () => {
          expect(validateEmail('invalid')).toBe(false)
          expect(validateEmail('@example.com')).toBe(false)
        })
      })
      
      // AI suggestion: Add test for password hashing
      describe('hashPassword', () => {
        // Ghost text suggestions...
      })
    })

    Testing & CI/CD

    Write tests faster with AI-generated test cases. Set up CI/CD pipelines with precise configuration. Ship with confidence, every time.

Agent queue

Planning engine

Instruction files

RAG index

Agent queue

Queue long-running jobs and let them run. Refactors, codegen, test sweeps — Microhost executes them in the background, retries on failure, and drops the results back into your workspace when they're done.

//

Benefits

Ship faster. Code better.

Real cost, not subsidized.

API pricing reveals what inference actually costs. Microhost runs locally where you control the bill.

No throttling.

No opaque rate limits, no hidden caps. The runtime is yours.

Persistent across sessions.

Chat history, decisions, and context survive restarts, model swaps, and tool changes.

Your chats are your IP.

Ingestion is local-first. Cloud sync is opt-in, per-feature.

Works with what you use.

Claude Code, Copilot CLI, OpenClaude – Microhost ingests them all.

Hybrid by design.

Local for control. Cloud for the heavy lifts you actually want offloaded.

//

Pricing

Pay once for the runtime.
Add cloud as you need it.

Waitlist

$25

one-time

Perfect for trying Exact. All core features included, forever.

Features

Unlimited local projects

AI autocomplete (basic)

Code chat assistant

50+ languages support

Terminal integration

Runtime

Popular

$30

$30

one-time

For developers who need advanced features and unlimited AI requests.

Features

Everything in Free

Unlimited AI requests

Advanced context (full codebase)

Priority AI responses

Smart refactoring tools

Multi-file editing

Agent Pro

$15-25/mo

For teams that need dedicated support, custom deployment, and advanced security.

Features

Everything in Pro

Unlimited team members

Self-hosted deployment

SSO & SAML

Custom AI model training

Dedicated support manager

SLA guarantees

Waitlist

$25

one-time

Perfect for trying Exact. All core features included, forever.

Features

Unlimited local projects

AI autocomplete (basic)

Code chat assistant

50+ languages support

Terminal integration

Runtime

Popular

$30

$30

one-time

For developers who need advanced features and unlimited AI requests.

Features

Everything in Free

Unlimited AI requests

Advanced context (full codebase)

Priority AI responses

Smart refactoring tools

Multi-file editing

Agent Pro

$15-25/mo

For teams that need dedicated support, custom deployment, and advanced security.

Features

Everything in Pro

Unlimited team members

Self-hosted deployment

SSO & SAML

Custom AI model training

Dedicated support manager

SLA guarantees

Waitlist

$25

one-time

Perfect for trying Exact. All core features included, forever.

Features

Unlimited local projects

AI autocomplete (basic)

Code chat assistant

50+ languages support

Terminal integration

Runtime

Popular

$30

$30

one-time

For developers who need advanced features and unlimited AI requests.

Features

Everything in Free

Unlimited AI requests

Advanced context (full codebase)

Priority AI responses

Smart refactoring tools

Multi-file editing

Agent Pro

$15-25/mo

For teams that need dedicated support, custom deployment, and advanced security.

Features

Everything in Pro

Unlimited team members

Self-hosted deployment

SSO & SAML

Custom AI model training

Dedicated support manager

SLA guarantees

//

FAQ

Questions? We've got answers.

Is the runtime really local?

How does Microhost compare to Claude Code or Copilot?

Are my chats private?

What models does Microhost support?

Can I use it offline?

What about teams?

Own your AI context. Starting now.

Join the paid waitlist for $25. Lock in lifetime discounts on every cloud tier, plus first access to the runtime when it ships.