mcp-guardrails-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>mcp-guardrails-spring-boot-starter</artifactId>
<version>0.2.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>mcp-agent-guardrails-spring-boot-starter</artifactId>
<version>0.2.0</version>
</parent>
<artifactId>mcp-guardrails-spring-boot-starter</artifactId>
<name>MCP Guardrails Spring Boot Starter</name>
<description>Auto-configuration that assembles all MCP agent guardrails; the artifact end users import.</description>
<dependencies>
<!-- Spec §7: chain, SPI, decorator, core properties -->
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Spec §7: audit beans (store, bus, guardrail, properties) -->
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-audit</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Spec §7: authz beans -->
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-authz</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Spec §7: injection-guard beans -->
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-injection-guard</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Spec §7: ratelimit beans -->
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-ratelimit</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-tool-integrity</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-credential-leak-guard</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-egress-control</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-anomaly-detector</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-approval-gate</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.tikyparkinson</groupId>
<artifactId>guardrails-trifecta-correlator</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Spec §7: @AutoConfiguration and @ConditionalOn* — the module's raison d'être -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<!-- Spec §7: SyncToolSpecification decorated by the BeanPostProcessor; compile scope on
purpose — the starter carries the SDK to the user's classpath -->
<dependency>
<groupId>io.modelcontextprotocol.sdk</groupId>
<artifactId>mcp-core</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<!-- Spec §7: ApplicationContextRunner, the canonical way to test auto-configurations -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<!-- Spec §7: compile-time requirement of ApplicationContextRunner (AssertProvider) -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>