Connecting AI Tools
Integrate Agiflow into your existing AI workflow via Model Context Protocol (MCP). Enable your agents to query project state, manage tasks, and follow architecture rules.
01 // Quick Setup
Add the following configuration to your MCP settings file. Replace {orgId} with your organization identifier.
{
"mcpServers": {
"agiflow": {
"url": "https://api.agiflow.io/api/v1/organizations/{orgId}/mcp"
}
}
}On first tool execution, Agiflow will trigger an OAuth browser flow. Grant access to your organization to establish a persistent session.
Secure Transport
All tool calls are encrypted and scoped to your organization boundaries.
02 // Scope Matrix
/organizations/{orgId}/mcp/projects/{projectId}/mcp/work-units/{workUnitId}/mcp/tasks/{taskId}/mcp03 // Authentication
OAuth_Standard
Recommended for interactive tools like Claude Code and Cursor. Seamlessly handles token rotation and organization selection via browser flow.
- Multi-org support
- Zero configuration setup
- Persistent sessions
Static_Token
Best for CI/CD pipelines, headless agents, or automated scripts. Generate long-lived keys from Dashboard → Settings → API Keys.
"headers": {
"Authorization": "Bearer {key}"
}04 // Discovery
describe_capabilitiesRecursive discovery of tools and domain skills
use_capabilityDynamic execution of any discovered capability
get_current_scopeRuntime verification of session context
Ready to integrate?
Initialize your environment by connecting your primary AI tool. No credit card required for standard orchestration.