Connectors
D.A.M.I connects to your existing DevOps tools using pre-built connectors powered by the MCP (Model Context Protocol).
Available Connectors
| Connector | Category | Status | Tools |
|---|---|---|---|
| Jenkins | CI/CD | ✅ Available | Build triggers, job management, logs |
| GitHub | Source Control | ✅ Available | Repos, PRs, Actions, webhooks |
| Custom MCP | Any | ✅ Available | Bring your own MCP server |
Coming Soon 🚀
We're actively building connectors for more tools. Stay tuned!
| Connector | Category | ETA |
|---|---|---|
| Jira | Project Management | Q3 2026 |
| PagerDuty | Incident Management | Q3 2026 |
| Datadog | Monitoring | Q3 2026 |
| Slack | Communication | Q3 2026 |
| Confluence | Documentation | Q4 2026 |
| Terraform | Infrastructure | Q4 2026 |
| ArgoCD | GitOps | Q4 2026 |
Want a specific connector? You can use the Custom MCP Server connector to integrate any tool that supports the MCP protocol — no need to wait for an official connector!
How Connectors Work
- Discovery — D.A.M.I queries the MCP server for available tools
- Classification — Each tool is classified by risk level (READ/WRITE/DESTRUCTIVE)
- Execution — AI agents call tools via the MCP protocol
- Approval — WRITE and DESTRUCTIVE operations require human approval
Adding a Connector
# Via API
curl -X POST https://api.dami.dev/api/v1/connectors/connect \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"template_id": "jenkins",
"config": {
"url": "https://jenkins.example.com",
"username": "admin",
"api_token": "your-token"
}
}'Or use the Dashboard → Settings → Connectors UI for a guided setup.