Skip to main content

Composition Patterns

OntoRamp MCP tools integrate with your existing agent workflows. Combine governance assessment with Jira, GitHub, Slack, or build complete audit pipelines — every pattern uses standard MCP tool calls.


Connect OntoRamp

Add OntoRamp to your Claude Desktop, Cursor, or Windsurf configuration. Get your API key first.

{
  "mcpServers": {
    "ontoramp": {
      "url": "https://mcp.ontoramp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}

Jira + OntoRamp

Governance impact assessment before ticket creation

Trigger: Before creating a Jira ticket for a new system or architectural change, assess governance impact.

Tools: get_maturity_gap

INPUT

{
  "tool": "get_maturity_gap",
  "input": {
    "domain": "security"
  }
}

Governance gaps surface before work starts, not after audit findings.


GitHub + OntoRamp

Compliance regression checks on PR merge

Trigger: When a PR modifies governance documentation, validate it against known frameworks before merging.

Tools: lint_document

INPUT

{
  "tool": "lint_document",
  "input": {
    "content": "...updated data retention policy text...",
    "domain": "governance"
  }
}

Compliance regressions caught in PR review, not in the next audit cycle.


Slack + OntoRamp

Evidence-linked governance answers in chat

Trigger: When someone asks a governance question in Slack, find evidence-linked answers from the knowledge base.

Tools: hybrid_search

INPUT

{
  "tool": "hybrid_search",
  "input": {
    "query": "What is our data retention policy for customer PII?",
    "domain": "data"
  }
}

Governance answers cite specific source documents instead of tribal knowledge.


Full Audit Workflow

Complete governance assessment pipeline

Trigger: Run a full governance assessment — from evidence search through board-ready brief.

Tools: semantic_searchlint_documentget_maturity_gapgenerate_brief

INPUT

// Step 1: Find relevant controls
{ "tool": "semantic_search", "input": { "query": "SOC 2 access control requirements", "domain": "security" } }

// Step 2: Validate policy documents
{ "tool": "lint_document", "input": { "content": "...access control policy..." } }

// Step 3: Assess domain maturity
{ "tool": "get_maturity_gap", "input": { "domain": "security" } }

// Step 4: Generate board-ready summary
{ "tool": "generate_brief", "input": { "topic": "SOC 2 readiness — access controls", "domain": "security" } }

Four tool calls produce a board-ready governance brief with full evidence provenance.


Ready to connect governance intelligence to your agent workflows?

Get your API key