MCP
flowly mcp commands
Complete reference for the
flowly mcp command group. Changes take effect at the next agent boot β restart the gateway (flowly restart) or start a new session.Discover & install
flowly mcp catalogβ list the curated, version-pinned servers shipped with Flowly.flowly mcp install <name>β install a catalog server. Prompts for any secret, probes the connection, enables it. OAuth entries point you atflowly mcp loginnext.flowly mcp pickerβ interactive catalog browser; install with arrow keys.
Manage servers
flowly mcp add <name> β¦β add a custom server.--command(+--arg/--env) for stdio, or--url(+--header/--auth oauth) for HTTP/SSE.flowly mcp listβ table of configured servers (transport, tool filter, status).flowly mcp test <name>β connect, list tools, disconnect. A health check.flowly mcp configure <name>β interactively pick which of a server's tools are enabled.flowly mcp enable / disable <name>β flip a server on or off without removing it.flowly mcp remove <name>β delete a server (and its cached OAuth tokens).
bash
# stdio
flowly mcp add myfs --command npx -a -y -a @modelcontextprotocol/server-filesystem -a /tmp
# HTTP with a bearer header sourced from ~/.flowly/.env
flowly mcp add api --url https://x.example/mcp --header "Authorization: Bearer ${API_KEY}"
flowly mcp list
flowly mcp disable myfs
flowly mcp remove myfsAuth
flowly mcp login <name>β run (or re-run) the OAuth 2.1 / PKCE browser flow for an OAuth server. Tokens are stored and auto-refreshed under~/.flowly/mcp-tokens/.
Serve
flowly mcp serveβ run Flowly as an MCP server on stdio (read-only).flowly mcp serve --allow-writesβ also expose send + approval tools (requires a running gateway).