Installation
CLI Workflow
The CLI follows a three-step pattern: discover tools, activate them, then call them.Core Commands
| Command | Description |
|---|---|
flowmcp search <query> | Find tools (max 10 results) |
flowmcp add <tool-name> | Activate a tool + show parameters |
flowmcp call <tool-name> '{json}' | Call a tool with JSON parameters |
flowmcp remove <tool-name> | Deactivate a tool |
flowmcp list | Show active tools |
flowmcp status | Health check |
Search, Add, Call
Search for tools
Find tools by keyword. Results include name, description, and the command to add each tool.
Add a tool
Activate a tool for your project. The response shows the tool’s parameters with types and requirements.The parameter schema is also saved locally in
.flowmcp/tools/ for reference.Agent Mode vs Dev Mode
The CLI has two operating modes that control which commands are available:| Mode | Commands | Use Case |
|---|---|---|
| Agent | search, add, call, remove, list, status | Daily AI agent usage |
| Dev | + validate, test, migrate | Schema development |
Agent mode is the default. It exposes only the commands an AI agent needs to discover, activate, and call tools. Switch to Dev mode for schema development and validation workflows.
Dev Mode Commands
Dev mode unlocks additional commands for schema authors:Local Project Config
When youadd tools, a .flowmcp/ directory is created in your project:
tools/ contains the tool name, description, and expected input parameters: