Kentico.Xperience.VirtualInbox 1.0.0

Prefix Reserved
dotnet add package Kentico.Xperience.VirtualInbox --version 1.0.0
                    
NuGet\Install-Package Kentico.Xperience.VirtualInbox -Version 1.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kentico.Xperience.VirtualInbox" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kentico.Xperience.VirtualInbox" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Kentico.Xperience.VirtualInbox" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kentico.Xperience.VirtualInbox --version 1.0.0
                    
#r "nuget: Kentico.Xperience.VirtualInbox, 1.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Kentico.Xperience.VirtualInbox@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kentico.Xperience.VirtualInbox&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Kentico.Xperience.VirtualInbox&version=1.0.0
                    
Install as a Cake Tool

Xperience by Kentico Virtual Inbox

Kentico Labs CI: Build and Test

Package NuGet
Kentico.Xperience.VirtualInbox Kentico.Xperience.VirtualInbox - NuGet Package
Kentico.Xperience.VirtualInbox.Admin Kentico.Xperience.VirtualInbox.Admin - NuGet Package
Kentico.Xperience.VirtualInbox.MCP Kentico.Xperience.VirtualInbox.MCP - NuGet Package

Description

An in-app hosted virtual inbox for email channel development, testing, and AI agent email access.

What are some use cases for this integration?

Screenshots

Administration UI virtual inbox Agent driven virtual inbox MCP server

Requirements

Library Version Matrix

Xperience Version Library Version
>= 31.2.0 1.0.0

Dependencies

Package Installation

Add these package to your application using the .NET CLI.

The core package adds the integration's object types and custom email client.

dotnet add package Kentico.Xperience.VirtualInbox

The admin project adds the virtual inbox administration UI application to the project.

dotnet add package Kentico.Xperience.VirtualInbox.Admin

The MCP project adds Virtual Inbox MCP tools that you can register on your application's MCP server.

dotnet add package Kentico.Xperience.VirtualInbox.MCP

Quick Start

  1. Add the Admin and MCP NuGet packages to your Xperience by Kentico ASP.NET Core application.

  2. Register the integration's services, an MCP server and the integration's MCP tools:

    // ...
    builder.Services.AddVirtualInboxClient(builder.Configuration); // Adds this library's services
    if (env.IsDevelopment())
    {
       builder.Services
         .AddMcpServer() // Host application is responsible for adding the McpServer
         .WithHttpTransport()
         .WithVirtualInboxTools(); // Adds this library's MCP tools
    }
    // ...
    
  3. Enable the MCP server in the middleware pipeline:

    // ...
    app.Kentico().MapRoutes();
    
    if (env.IsDevelopment())
    {
       app.MapMcp("/mcp"); // Host application is responsible for adding the endpoint
    }
    // ...
    
  4. Update your appsettings.Development.json to enable the library features:

     "Kentico": {
       "VirtualInbox": {
         "Enabled": true,
       }
     },
    
  5. Configure your MCP server for your AI enabled development tool

    {
      "servers": {
        "kentico.docs.mcp": {
          "type": "http",
          "url": "https://docs.kentico.com/mcp"
        },
        "your-app": {
          "type": "http",
          "url": "http://localhost:23146/mcp"
        }
      }
    }
    

If used in a production environment, the MCP server exposes customer data without any authentication. The MCP server feature is intended for development-environments only.

Use environment identification extensions or environment specific settings to disable the MCP server for non-local deployments.

Full Instructions

View the Usage Guide for more detailed instructions.

Contributing

To see the guidelines for Contributing to Kentico open source software, please see Kentico's CONTRIBUTING.md for more information and follow the Kentico's CODE_OF_CONDUCT.

Instructions and technical details for contributing to this project can be found in Contributing Setup.

License

Distributed under the MIT License. See LICENSE.md for more information.

Support

Kentico Labs

This project has Kentico Labs limited support.

See SUPPORT.md for more information.

For any security issues see SECURITY.md.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Kentico.Xperience.VirtualInbox:

Package Downloads
Kentico.Xperience.VirtualInbox.Admin

Adds Administration application UI for Xperience by Kentico Virtual Inbox.

Kentico.Xperience.VirtualInbox.MCP

Adds MCP server for Xperience by Kentico Virtual Inbox.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 0 2/27/2026
1.0.0-prerelease-2 0 2/26/2026
1.0.0-prerelease-1 0 2/26/2026