Connect to LumenFlow via MCP

LumenFlow can act as a server for MCP-compatible AI tools, so they can query your workspace as a connected data source, authenticated with a workspace API key. Today this exposes one read-only tool: a list of your workspace's delivery programs.

LumenFlow as an MCP server#

LumenFlow can act as a server for MCP-compatible AI tools — for example an AI coding assistant — so they can query your workspace as a connected data source.

Endpoint and authentication#

POST https://<your-app-domain>/api/v1/mcp

Authenticate with a workspace API key as a bearer token:

Authorization: Bearer <your-workspace-api-key>

Generate or revoke API keys from your workspace settings — see API reference. The endpoint supports standard MCP discovery (initialize, tools/list, resources/list), so a compliant MCP client can connect and discover what's available without extra configuration on your end.

What's available today#

One tool is wired up: a read-only list of your workspace's delivery programs, each with its ID, title, status (active, completed, or cancelled), created and completed dates, and a progress figure. You can optionally filter by status. The tool is read-only and never makes changes to your workspace.

More tools will be added to this surface over time.

info There's no in-dashboard "Connect" button for this yet — point your MCP client at the endpoint above with a workspace API key to get started.