Install Mistflow
Mistflow works with any AI editor that supports MCP — Claude Code, Cursor, Codex CLI, and more.
One-line install
Section titled “One-line install”Installs Node.js if needed, then configures your editors.
curl -fsSL https://mistflow.ai/install.sh | shInspect first: curl https://mistflow.ai/install.sh
irm https://mistflow.ai/install.ps1 | iexWith npx (if you already have Node 20+)
Section titled “With npx (if you already have Node 20+)”-
Run the installer
Terminal window npx -y mistflow-ai installThe installer auto-detects your editors and configures them.
-
Log in
Open your AI editor and say:
Log me in to MistflowYour browser opens to
app.mistflow.ai. Sign in (or create an account), and your credentials are stored locally in~/.mistflow/credentials.json. -
Verify
Ask your editor:
What can Mistflow do?If your editor lists Mistflow’s capabilities, you’re all set.
Manual install
Section titled “Manual install”Edit ~/.claude.json:
{ "mcpServers": { "mistflow": { "command": "npx", "args": ["-y", "@mistflow-ai/mcp"] } }}Restart Claude Code, then say “Log me in to Mistflow” to authenticate.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{ "mcpServers": { "mistflow": { "command": "npx", "args": ["-y", "@mistflow-ai/mcp"], "transport": "stdio" } }}Fully quit Claude Desktop (⌘Q on Mac), reopen it, then switch to the Code tab — Mistflow tools live there, not in the regular chat.
Edit ~/.cursor/mcp.json:
{ "mcpServers": { "mistflow": { "command": "npx", "args": ["-y", "@mistflow-ai/mcp"] } }}Restart Cursor, then say “Log me in to Mistflow” to authenticate.
Edit ~/.codex/config.toml:
[mcp_servers.mistflow]command = "npx"args = ["-y", "@mistflow-ai/mcp"]Restart Codex, then say “Log me in to Mistflow” to authenticate.
Edit .vscode/mcp.json in your project:
{ "servers": { "mistflow": { "command": "npx", "args": ["-y", "@mistflow-ai/mcp"], "type": "stdio" } }}Reload VS Code, then say “Log me in to Mistflow” in Copilot chat to authenticate.
Updating
Section titled “Updating”npx -y mistflow-ai installRunning the installer again always pulls the latest version.
Troubleshooting
Section titled “Troubleshooting”| Problem | Solution |
|---|---|
| Editor doesn’t see Mistflow | Restart your editor. Check that the MCP config has the mistflow entry. |
| ”Authentication failed” | Say “Log me in to Mistflow” in your editor to re-authenticate. |
| ”Command not found: npx” | Install Node.js 20+ from nodejs.org. |
For more help, see Troubleshooting.