Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

Atoti Intelligence SDK

This is part of the Atoti Intelligence SDK offer.
This guide explains how to add the MCP server to an Atoti Java project.

Prerequisites

Before setting up the MCP server, ensure the following requirements are met:
  • Java project
  • License with AI flag enabled

Add the dependencies

Add the MCP server dependencies to the project. Add the following to pom.xml:
<dependency>
  <groupId>com.activeviam.springboot</groupId>
  <artifactId>starter-ai-mcp-server</artifactId>
  <version>${activepivot.version}</version>
</dependency>
<dependency>
  <groupId>org.springframework.ai</groupId>
  <artifactId>spring-ai-starter-mcp-server-webmvc</artifactId>
  <version>${spring-ai.version}</version>
</dependency>

Verify the setup

After adding the dependencies, verify that the MCP server is available:
  1. Build the project
  2. Start the Atoti application
  3. Check the application logs for MCP server initialization messages
  4. Verify that the MCP server endpoint is accessible (typically at /sse)
After setting up the MCP server, proceed to: