sentrik
Was ist Sentrik?
Sentrik ist eine CLI + Dashboard, die Codierungsstandards, Compliance-Regeln und Sicherheitsrichtlinien bei jedem Commit durchsetzt. Entwickelt für Teams, die KI-Codierungsagenten (Claude Code, Cursor, Copilot) einsetzen, bei denen Code schneller generiert wird, als Menschen ihn überprüfen können.
Das Problem: KI-Agenten schreiben Code, der funktioniert, aber gegen Sicherheitsrichtlinien, Compliance-Anforderungen oder Architekturstandards verstoßen kann. Niemand bemerkt es bis zum Audit.
Die Lösung: Sentrik scannt jede Änderung gegen regulatorische Standards (OWASP, SOC 2, HIPAA, PCI-DSS, FDA IEC 62304 und mehr), blockiert PRs, die durchfallen, und erzeugt auditfähige Nachweise.
Related MCP server: DevStandards MCP Server
Installation
pip install sentrikDie Installation gibt dir sofort die kostenlose Stufe – 6 Standardpakete, 193 Regeln, ohne Lizenzschlüssel oder Anmeldung. Kostenpflichtige Stufen werden mit einem Lizenzschlüssel von hello@sentrik.dev aktiviert.
Schnellstart
# 1. Initialize your project (auto-detects language, frameworks, CI)
sentrik init
# 2. Scan your code
sentrik scan
# 3. Enforce the gate in CI (exit 1 on failure)
sentrik gate
# 4. Launch the dashboard
sentrik dashboardKostenlose Stufe (für immer, ohne Kreditkarte)
Sentrik enthält 6 Standardpakete mit 193 Regeln kostenlos:
Paket | Regeln | Was es erkennt |
OWASP Top 10 | 69 | SQL-Injection, XSS, Authentifizierungsfehler, SSRF und mehr |
SOC 2 | 30 | Trust-Services-Kriterien für Sicherheit & Verfügbarkeit |
Python-Sicherheit | 18 | eval/exec, pickle, subprocess, Django/Flask-Schwachstellen |
Go-Sicherheit | 15 | Injection, Krypto-Missbrauch, unsafe, Nebenläufigkeitsfehler |
Supply-Chain-Sicherheit | 26 | SLSA, SBOM, Abhängigkeitsintegrität, KI-Tool-Lieferkette |
C/C++-Codierungsstandards | 35 | Moderne C/C++-Sicherheits- und Schutzpraktiken |
Plus integrierte Befehle auf jeder Stufe:
sentrik scan/sentrik gate– Scannen und durchsetzensentrik vulns– Schwachstellenscan für Abhängigkeiten (CVEs)sentrik sbom– Software-Stückliste (Bill of Materials)sentrik secrets– Erkennung hartcodierter Geheimnissesentrik dashboard– Web-UI mit Ergebnissen, Diagrammen und Berichtensentrik threat-model– STRIDE-Bedrohungsanalysesentrik quality-score– Codequalitätsbewertung (0–100)
Kostenpflichtige Stufen
Kostenlos | Team | Organisation | |
Standardpakete | 6 (193 Regeln) | 18 (475 Regeln) | 24 (595 Regeln) |
OWASP, SOC 2, Supply Chain, C/C++ | Ja | Ja | Ja |
HIPAA, PCI-DSS, ISO 27001, GDPR | – | Ja | Ja |
FDA IEC 62304, NIST, CMMC, Cloud IaC | – | Ja | Ja |
MISRA-C, DO-178C, ISO 26262 | – | – | Ja |
Schwachstellenscan | Ja | Ja | Ja |
Dashboard | Ja | Ja | Ja |
Arbeitsabgleich (Work Items) | – | Ja | Ja |
Benutzerdefinierte Regelpakete | 5 | 25 | 100 |
Paralleles Scannen | – | – | Ja |
Governance- & Audit-Log | – | – | Ja |
Kostenpflichtige Stufen sind erhältlich über hello@sentrik.dev – siehe sentrik.dev/pricing.
CI/CD-Integration
GitHub Actions (Marketplace)
# .github/workflows/sentrik.yml
name: Sentrik Gate
on: [pull_request]
jobs:
gate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: maxgerhardson/sentrik-community@v1Das war's – eine Zeile. Die Action erkennt automatisch den PR-Kontext, führt die Prüfung aus, lädt SARIF in GitHub Code Scanning hoch und hängt den Ergebnisbericht als Artefakt an.
Mit Optionen:
- uses: maxgerhardson/sentrik-community@v1
with:
packs: "owasp-top-10,soc2,supply-chain-security"
fail-on: "critical,high"
license-key: ${{ secrets.SENTRIK_LICENSE_KEY }}Mit Ausgaben (Outputs):
- uses: maxgerhardson/sentrik-community@v1
id: sentrik
- run: echo "Found ${{ steps.sentrik.outputs.findings-count }} findings"
if: always()GitLab CI
sentrik:
image: maxgerhardson/sentrik:latest
script:
- sentrik gate --git-range "origin/main...HEAD"
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"Azure Pipelines
- script: |
pip install sentrik
sentrik gate --git-range "origin/main...HEAD"
displayName: Sentrik GateKI-Agenten-Integration
Sentrik funktioniert als MCP-Server für KI-Codierungsagenten:
# Start MCP server for Claude Code, Cursor, VS Code
sentrik mcp-serverDer MCP-Server gibt KI-Agenten Echtzeitzugriff auf Compliance-Regeln, Scan-Ergebnisse und Sanierungsanleitungen – damit sie von Anfang an konformen Code schreiben.
Beispielkonfigurationen
Starter (Web-App)
# .sentrik/config.yaml
standards_packs:
- owasp-top-10
- supply-chain-security
gate:
fail_on:
- critical
- highGesundheitswesen / Medizinprodukte
standards_packs:
- owasp-top-10
- hipaa
- fda-iec-62304
- supply-chain-security
gate:
fail_on:
- critical
- high
- mediumFintech
standards_packs:
- owasp-top-10
- pci-dss
- soc2
- supply-chain-security
gate:
fail_on:
- critical
- highBehörden / Verteidigung
standards_packs:
- owasp-top-10
- nist-800-53
- cmmc
- supply-chain-security
gate:
fail_on:
- critical
- high
- mediumCommunity
Diskussionen – Fragen stellen, Tipps teilen, zeigen, was du gebaut hast
Issues – Fehler melden oder Funktionen anfragen
Dokumentation – Vollständige CLI-Referenz, Konfigurationsanleitung, API-Dokumentation
Support
Kanal | Für |
Fragen, Ideen, Community-Hilfe | |
Direkter Support (kostenpflichtige Stufen) | |
Preise und Lizenzierung |
Lizenz
Proprietär. Kostenlose Stufe für immer verfügbar, ohne Kreditkarte.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides real-time policy enforcement for AI coding agents by intercepting and validating their actions against organizational standards like naming conventions, security policies, and compliance rules before execution. Prevents violations through immediate feedback and auto-correction suggestions.5
- FlicenseNot gradedqualityNot gradedmaintenanceProvides AI agents with access to 284+ development best practices, security guidelines, and coding standards across multiple languages and frameworks including comprehensive Drupal standards and OWASP Top 10 vulnerabilities.2
- AlicenseNot gradedqualityCmaintenanceTransforms static coding standards into a queryable live data store for AI agents, delivering task-specific rules and fix guidance on demand. This optimizes context window usage through progressive disclosure, ensuring agents apply relevant governance without loading massive documentation.2MIT
- AlicenseNot gradedqualityBmaintenanceIntegrates authoritative security compliance frameworks (ISO 27001, NIST 800-53, OWASP ASVS, NIST SSDF) into AI-assisted development, offering control lookups, cross-framework mappings, build-time guardrails, and automated audit evidence generation.1693MIT
Related MCP Connectors
Threat modeling, code/cloud/pipeline scanning, shadow-AI discovery, compliance checks and fixes.
Pay-per-call cybersecurity for AI agents: vuln scans, threat intel, compliance, code security.
Zero-install security baseline for AI coding agents — OWASP/CWE-cited rules over MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/maxgerhardson/sentrik-community'
If you have feedback or need assistance with the MCP directory API, please join our Discord server