Model Context Protocol

Code that
flows.

An MCP server that adapts to your environment like liquid adapts to its container. Zero friction. Pure flexibility.

terminal
$ npx liq-dev
[liq] detecting environment...
[liq] adapting configuration...
[liq] MCP server ready
$

Built for adaptability

Like water finding its path, Liq.Dev MCP flows through your development stack seamlessly

Environment Aware

Automatically detects your environment and adjusts behavior. Local, staging, or production — it just works.

Modular Design

Pick what you need. Every capability is a drop you can add or remove from your flow.

Zero Config

Start immediately. No boilerplate, no setup. Configuration emerges from context.

Configure with intention

When you need control, Liq.Dev speaks your language. Clean, readable configuration that feels natural.

Environment Variables
Automatic detection and injection
Type-safe Config
Full TypeScript support
Hot Reload
Changes flow through instantly
liq.config.ts
import { defineConfig } from 'liq-dev'

export default defineConfig({
  env: 'auto',  // detects automatically

  tools: [
    'filesystem',
    'git',
    'terminal',
  ],

  adapters: {
    development: {
      verbose: true,
      hotReload: true,
    },
    production: {
      optimized: true,
    }
  }
})

Start flowing

One command to enter the flow state

$ npm install -g liq-dev
or use npx
$ npx liq-dev init