Integration Guides
Connect Feature1 with Git providers and MCP-compatible AI agents.
Version Control
Connect your code repositories and version control systems
AI Agents via MCP
Connect coding agents to Feature1 workflows through MCP tools
Design & Workflow
Bring design context and planning artifacts into delivery workflows
Quick Setup
Get started with your first integration in minutes
Choose Integration
Select the tool or platform you want to connect
Follow Setup Guide
Complete the step-by-step configuration process
Test Connection
Verify the integration is working correctly
Start Using
Begin leveraging the integrated workflow
Most Popular Integrations
Get started with these commonly used integrations
GitHub
Version ControlComplete GitHub integration with repository analysis, PR automation, and code review assistance.
Claude Code
AI Agent (MCP)Run Feature1 workflows using MCP tools from a coding assistant CLI.
Figma MCP
Design IntegrationUse design context and assets in implementation workflows through MCP.
Custom Integrations
Need a custom integration? Use our API and webhooks to build exactly what you need.
const feature1 = new feature1API('your-api-key');
// Connect repository
const repo = await feature1.repos.create({
url: 'https://github.com/user/repo',
webhook_url: 'https://your-app.com/webhook'
});
// Listen for events
feature1.webhooks.on('analysis.complete', (data) => {
console.log('Analysis complete:', data);
});