Inflow Cli
БесплатноНе проверенA wallet for your agents to onboard and pay. Agentic MPP / x402 payments from your machine - CLI + MCP server.
Описание
A wallet for your agents to onboard and pay. Agentic MPP / x402 payments from your machine - CLI + MCP server.
README
CI npm version npm downloads codecov node License: MIT Discord skills.sh
InFlow — Agent Enrollment Protocol access and agentic MPP (Machine Payments Protocol) / x402 payments from your machine.
The agent-native and human-accessible command-line entry point to InFlow. Agentic buyers perform agent-native payments via MPP and x402, manage Agent Enrollment Protocol Service enrollment, and fetch resources that require AEP authentication before payment; humans hit the same functionality from MCP-integrated assistants or the raw CLI.
New here? Start with the command reference in packages/cli/README.md — it covers auth,
the x402 and mpp command groups, the global flags, and the agent (--format) renderings.
Installing into an agent host? Use the per-surface guide: docs/development/surfaces-and-testing.md.
Install
InFlow is distributed as a signed native application. The npm package is a compatibility notice and does not run commands, start MCP, or manage credentials.
Public installation supports Apple Silicon and Intel Macs, Windows x64 and ARM64, and Linux ARM64 and AMD64. Homebrew, the hosted installers, WinGet, and direct GitHub Release downloads install the signed native application for each platform.
Homebrew Cask
brew tap inflowpayai/tap
brew install --cask inflow
inflow --version
Upgrade or uninstall through Homebrew:
brew upgrade --cask inflow
brew uninstall --cask inflow
Hosted installers
On macOS, Debian/Ubuntu, and Fedora/RHEL:
curl -fsSL https://inflowcli.ai/install.sh | bash
On macOS, the installer selects the current architecture, verifies the checksum plus code-signing and Gatekeeper checks,
installs InFlow.app into ~/.local/share/inflow, and links inflow into ~/.local/bin. On Linux, it verifies the
OpenPGP-signed release manifest and package checksum before installing the matching Debian or RPM system package.
Run the installer again to upgrade to the latest GitHub Release. Uninstall with:
curl -fsSL https://inflowcli.ai/install.sh | bash -s -- --uninstall
On Windows, run PowerShell as a user who can approve the Windows Installer elevation prompt:
irm https://inflowcli.ai/install.ps1 | iex
The PowerShell installer selects x64 or ARM64, verifies the MSI checksum, Authenticode status, and publisher, and then installs the package through Windows Installer. Run it again to upgrade. To uninstall while preserving encrypted vault data:
$env:INFLOW_UNINSTALL = '1'
try { irm https://inflowcli.ai/install.ps1 | iex } finally { Remove-Item Env:INFLOW_UNINSTALL }
The compatibility shell endpoint delegates to the platform installer on macOS, Linux, and Git Bash-like Windows environments:
curl -fsSL https://inflowcli.ai/cli | bash
WinGet
winget install --id InFlowPayAI.InFlow --exact
Upgrade or uninstall through WinGet:
winget upgrade --id InFlowPayAI.InFlow --exact
winget uninstall --id InFlowPayAI.InFlow --exact
Direct download
Download the matching artifact from the inflowpayai/inflow-cli GitHub Release for the package version:
inflow-<version>-darwin-arm64.zipfor Apple Silicon Macsinflow-<version>-darwin-x64.zipfor Intel Macsinflow-<version>-windows-arm64.msifor Windows ARM64inflow-<version>-windows-x64.msifor Windows x64
The zip contains InFlow.app; the executable is inside the app bundle at InFlow.app/Contents/MacOS/inflow.
Linux releases include ARM64 and AMD64 Debian packages, RPM packages, and standalone archives. Debian and RPM packages install the system vault service required by the Linux security model.
Windows MSI packages install the command-line application and its on-demand vault service. Windows verifies the Authenticode signature and publisher before installation.
Initialize the credential vault
Credential-bearing commands use the encrypted local InFlow vault. Initialize or unlock it in a human-controlled terminal:
inflow vault unlock
The PIN or passphrase is read only from the terminal. It is not an MCP argument, command-line flag, environment
variable, or structured agent input. inflow vault status, inflow vault lock, and inflow vault policy do not
require the unlock factor.
Use with agents
Install the agentic-enrollment and agentic-payments skills into a skills-aware agent:
npx skills add inflowpayai/inflow-cli
The repo also ships as an installable plugin (skill + MCP server bundled) for plugin-aware hosts:
Claude Code — add the marketplace, then install the plugin:
/plugin marketplace add inflowpayai/inflow-cli /plugin install inflow@inflowHere
inflowpayai/inflow-cliis the GitHub repo slug; the marketplace, plugin, and binary are all namedinflow, so the install target isinflow@inflow.Cursor / Codex — point the host at this repo; it discovers
.cursor-plugin/marketplace.json,.agents/plugins/marketplace.json, and.codex-plugin/plugin.jsonrespectively.
In every case the plugin bundles the skill and the inflow MCP server (.mcp.json). The default MCP entry runs
inflow --mcp; install the signed native binary before using the MCP server.
Security and local data
- OAuth tokens, API keys, and Agent Enrollment Protocol credentials are encrypted in the local SQLite vault.
- The vault daemon accepts only authenticated local InFlow clients and exposes exact-reference secret operations, not payment, network, signing, or command-execution operations.
- The daemon authenticates clients, and clients authenticate the daemon before transmitting requests.
- Vault unlock factors are entered only in a human terminal. Agent and MCP executions fail closed while the vault is locked.
- macOS uses the signed application identity. Windows uses Authenticode-signed application and Windows service identities. Linux packages install a system service and enforce executable, socket, peer, tenant, and package identity checks.
inflow auth logoutandinflow vault resetremove local credentials and vault state. Package uninstall preserves encrypted vault data unless the platform-specific purge operation is requested.
InFlow sends authenticated API requests, seller-resource requests requested by the user, and an advisory GitHub Release
version check. Set NO_UPDATE_NOTIFIER=1 to disable the version check. The check has a two-second deadline and does not
send credentials.
Upgrade and troubleshooting
Upgrade a Homebrew installation with brew upgrade --cask inflow, a WinGet installation with
winget upgrade --id InFlowPayAI.InFlow --exact, or a hosted installation by rerunning its platform installer. The CLI
may report a newer signed release, but continues unless the API returns VERSION_UNSUPPORTED.
If an agent or MCP tool reports that the vault is locked, run inflow vault unlock yourself in a terminal and retry the
operation. Never paste the PIN or passphrase into a prompt or MCP tool input.
Use inflow auth status --format json to check authentication and environment state, and inflow vault status to check
the local vault and daemon. See the surface install and testing guide for
host-specific MCP troubleshooting.
Development
This is a pnpm + Turborepo monorepo. Node >= 24.15.0 required.
pnpm install
pnpm build
pnpm test
Other useful tasks:
pnpm typecheck
pnpm lint
pnpm typedoc
pnpm changeset
Release automation
Production releases use one atomic native workflow that signs and verifies the macOS, Windows, and Linux artifacts before publishing an immutable GitHub Release and updating the platform distribution channels. See the native release guide for workflow modes, platform credentials, signing order, and recovery procedures.
Packages
@inflowpayai/inflow(packages/cli) — the published binary, and the entry point for anyone integrating InFlow. Thin render shell overinflow-core. See packages/cli/README.md for the full command reference.@inflowpayai/inflow-core(packages/core) — the headless InFlow client behind the binary. One augmented handle per command group (inflow.auth,inflow.user,inflow.balances,inflow.depositAddresses,inflow.x402,inflow.mpp) carrying both protocol primitives and the command-shaped operations, plus the helpers (sanitization, polling, seller-probe) that make both work. Workspace-internal today; see packages/core/examples/ for runnable scripts.
Repository
https://github.com/inflowpayai/inflow-cli
License
MIT — Copyright (c) 2025-2026 Jarwin, Inc.
Установка Inflow Cli
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/inflowpayai/inflow-cliFAQ
Inflow Cli MCP бесплатный?
Да, Inflow Cli MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Inflow Cli?
Нет, Inflow Cli работает без API-ключей и переменных окружения.
Inflow Cli — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Inflow Cli в Claude Desktop, Claude Code или Cursor?
Открой Inflow Cli на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Inflow Cli with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
