Skip to content

Agent integration

Connect Claude Code to your Agiflow board

Let Claude Code inspect projects, plan work, update tasks, and run Agiflow workflow skills from your terminal over a browser-authenticated MCP connection.

Connects over the Agiflow MCP server with browser-based Agiflow sign-in. The plugin path auto-wires the MCP server through the bundled .mcp.json.

Claude Code, connected to your Agiflow board.

Run coding work from the board, not a pasted brief

Claude Code is Anthropic's terminal coding agent. Connect it to Agiflow and it can work with the same projects, tasks, work units, workflows, comments, members, and vault entries your team tracks on the board.

Use the Agiflow AI Plugin when you want Claude Code to load Agiflow's MCP server and workflow skills together. Use the direct MCP setup when you only need the hosted Agiflow MCP connection. Either way, Agiflow stays the system of record while Claude Code acts through the access you authorize.

What Claude Code can do with Agiflow

  • Inspect Agiflow projects and the work already assigned to them.
  • Create, list, update, reorder, and batch-create tasks from terminal work sessions.
  • Group work into work units so implementation stays tied to deliverable features or epics.
  • Coordinate workflow locks for multi-agent or long-running work.
  • Read and write task comments so decisions stay attached to the board.
  • Use vault entries and project context when your authorized Agiflow scope allows it.
  • Load Agiflow workflow skills from the AI Plugin for planning, grooming, running, reviewing, triage, standup, and orchestration.
What Claude Code cannot do on its own:

Claude Code acts only through the tools Agiflow exposes and the access you authorize. Agiflow uses resource-bound consent for the organization or project you select, so there are no broad, named permission scopes to grant — vault and workflow actions stay governed by the connected user's permissions and the selected resource.

Set up Claude Code with Agiflow

Choose the plugin path when you want the Agiflow MCP server and Agiflow workflow skills loaded together. Choose the direct MCP path when you want to add the hosted Agiflow MCP server to Claude Code yourself.

Which endpoint to use:

For Claude Code and other coding agents, use https://agiflow.io/api/v1/mcp. Do not use /api/v1/mcp-app/0.0.1 — that endpoint serves the ChatGPT app/widget MCP surface.

Option A — Agiflow AI Plugin

Loads the Agiflow MCP server and Agiflow's workflow skills together.

1

Clone the Agiflow AI Plugin

Terminal
git clone https://github.com/AgiFlow/ai-plugin.git agiflow-ai-plugin
2

Start Claude Code with the plugin directory

Terminal
claude --plugin-dir ./agiflow-ai-plugin

The bundled .mcp.json wires the Agiflow MCP server automatically.

3

Check the connection

Claude Code
/mcp

Run /mcp inside Claude Code to confirm Agiflow is connected.

4

Authenticate and start working

If prompted, sign in to Agiflow in the browser and approve the workspace or project Claude Code can use. Then call Agiflow's loaded skills to plan, groom, run, review, triage, summarize standups, or orchestrate work.

Self-hosted Agiflow?:

If your deployment uses a different Agiflow MCP endpoint, set the plugin override before launching Claude Code:

Terminal
export AGIFLOW_AI_PLUGIN_MCP_URL="https://mcp.your-agiflow-instance.com/api/v1/mcp"

Option B — Direct MCP connection

Adds the hosted Agiflow MCP server to Claude Code without the plugin bundle.

1

Find your Agiflow connection URL

In Agiflow, open Settings → Connections and copy the URL shown.

2

Add Agiflow as a remote HTTP MCP server

Terminal
claude mcp add --transport http agiflow YOUR_AGIFLOW_URL
3

Open the connection menu

Claude Code
/mcp

Find Agiflow in the list, select Authenticate, and sign in through the browser window that opens.

4

Choose your scope and approve

Pick the organization or project Claude Code can use and approve access.

5

Test the connection

Claude Code
What projects are in my Agiflow workspace?
Agiflow Connect to Claude guide on the Claude Code tab, showing the claude mcp add --transport http command, the /mcp Authenticate step, and project- versus user-level scope.
The same steps live in Agiflow's Connect to Claude guide (Claude Code tab).
Tip: control where it's available:
  • Keep Claude Code's default local scope to make the connection private to the current project.
  • Use --scope project to share a .mcp.json entry with your team in the repo.
  • Use --scope user to make the connection available across all your Claude Code sessions.

Try Claude Code with your board

Once Agiflow is connected, ask Claude Code to work from the board:

  • What projects are in my Agiflow workspace?
  • Summarize the active work units for this project.
  • Turn this implementation plan into Agiflow tasks.
  • Start a workflow for this task and keep the board updated.
  • Add a comment with the decision we just made.

Build your own integration

Agiflow speaks the Model Context Protocol, so any MCP-compatible client can read and update your board.

Read the docs