An MCP server that adapts to your environment like liquid adapts to its container. Zero friction. Pure flexibility.
Like water finding its path, Liq.Dev MCP flows through your development stack seamlessly
Automatically detects your environment and adjusts behavior. Local, staging, or production — it just works.
Pick what you need. Every capability is a drop you can add or remove from your flow.
Start immediately. No boilerplate, no setup. Configuration emerges from context.
When you need control, Liq.Dev speaks your language. Clean, readable configuration that feels natural.
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,
}
}
})
One command to enter the flow state
$ npm install -g liq-dev
$ npx liq-dev init