Connectors
Overview

Connectors

D.A.M.I connects to your existing DevOps tools using pre-built connectors powered by the MCP (Model Context Protocol).

Available Connectors

ConnectorCategoryStatusTools
JenkinsCI/CD✅ AvailableBuild triggers, job management, logs
GitHubSource Control✅ AvailableRepos, PRs, Actions, webhooks
Custom MCPAny✅ AvailableBring your own MCP server

Coming Soon 🚀

We're actively building connectors for more tools. Stay tuned!

ConnectorCategoryETA
JiraProject ManagementQ3 2026
PagerDutyIncident ManagementQ3 2026
DatadogMonitoringQ3 2026
SlackCommunicationQ3 2026
ConfluenceDocumentationQ4 2026
TerraformInfrastructureQ4 2026
ArgoCDGitOpsQ4 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

  1. Discovery — D.A.M.I queries the MCP server for available tools
  2. Classification — Each tool is classified by risk level (READ/WRITE/DESTRUCTIVE)
  3. Execution — AI agents call tools via the MCP protocol
  4. 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.