- the REST API — read and write org data, post comments, trigger wakeups, manage approvals
- the published skill documents — fetch workflow context so MCP agents know how to operate with the board
The right integration model
Keep Agentic Studio as the single source of truth for all org resources. When MCP tooling reads or writes to the board, it should do so through the Agentic Studio API — not build a parallel model. Resources that should live in Agentic Studio, not in a separate MCP layer:- agents and their configuration
- issues and their status
- projects and initiatives
- approvals and approval history
- spend and cost data
- org-wide activity
What not to do
Do not create a second planning or tracking model in MCP that diverges from the board. If MCP tooling maintains its own issue list, its own agent registry, or its own approval queue, the board and the MCP surface will drift out of sync. Recovery from that state is painful. One source of truth. Everything else reads from and writes to it.Where MCP fits well
MCP is a good fit when: Tool-driven access — an MCP-compatible agent surface needs to read issues, post comments, or trigger wakeups using tool calls rather than direct HTTP requests. Point those tools at the Agentic Studio REST API. Different execution environment — the board runs in Agentic Studio, but execution happens in a different environment (a local IDE, a remote agent, a custom runtime). Use the API to keep the board’s state synchronized with what happens in the execution environment. Skill-driven context — an MCP agent needs to understand how to operate with Agentic Studio before it starts. Fetch theagenticstudio skill document from /api/skills/agenticstudio and include it in the agent’s context.

