2,500+ MCP servers ready to use
Vinkius

Kentico (CMS & DXP) MCP Server for Mastra AI 10 tools — connect in under 2 minutes

Built by Vinkius GDPR 10 Tools SDK

Mastra AI is a TypeScript-native agent framework built for modern web stacks. Connect Kentico (CMS & DXP) through Vinkius and Mastra agents discover all tools automatically. type-safe, streaming-ready, and deployable anywhere Node.js runs.

Vinkius supports streamable HTTP and SSE.

typescript
import { Agent } from "@mastra/core/agent";
import { createMCPClient } from "@mastra/mcp";
import { openai } from "@ai-sdk/openai";

async function main() {
  // Your Vinkius token. get it at cloud.vinkius.com
  const mcpClient = await createMCPClient({
    servers: {
      "kentico-cms-dxp": {
        url: "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
      },
    },
  });

  const tools = await mcpClient.getTools();
  const agent = new Agent({
    name: "Kentico (CMS & DXP) Agent",
    instructions:
      "You help users interact with Kentico (CMS & DXP) " +
      "using 10 tools.",
    model: openai("gpt-4o"),
    tools,
  });

  const result = await agent.generate(
    "What can I do with Kentico (CMS & DXP)?"
  );
  console.log(result.text);
}

main();
Kentico (CMS & DXP)
Fully ManagedVinkius Servers
60%Token savings
High SecurityEnterprise-grade
IAMAccess control
EU AI ActCompliant
DLPData protection
V8 IsolateSandboxed
Ed25519Audit chain
<40msKill switch
Stream every event to Splunk, Datadog, or your own webhook in real-time

* Every MCP server runs on Vinkius-managed infrastructure inside AWS - a purpose-built runtime with per-request V8 isolates, Ed25519 signed audit chains, and sub-40ms cold starts optimized for native MCP execution. See our infrastructure

About Kentico (CMS & DXP) MCP Server

Connect your Kentico Xperience project to any AI agent and take full control of your digital experience platform (DXP) and enterprise CMS through natural conversation.

Mastra's agent abstraction provides a clean separation between LLM logic and Kentico (CMS & DXP) tool infrastructure. Connect 10 tools through Vinkius and use Mastra's built-in workflow engine to chain tool calls with conditional logic, retries, and parallel execution. deployable to any Node.js host in one command.

What you can do

  • Document Orchestration — Retrieve and update site pages and documents based on alias paths, cultures, and site names directly from your agent
  • System Object Management — Create, list, and mutate general system objects (roles, templates, settings) using structured REST mappings
  • User CRM & Audit — List global platform users and retrieve detailed account profiles, including roles and metadata securely
  • Custom Table Analytics — Extract tabular data from Kentico custom tables to monitor internal registries and business-specific data models
  • Schema Visibility — Discover and inspect Kentico object types and scalar properties to understand your project's underlying data structure
  • Content Lifecycle — Perform deep property mutations on existing documents or irreversibly delete unused system objects to maintain an optimized repository

The Kentico (CMS & DXP) MCP Server exposes 10 tools through the Vinkius. Connect it to Mastra AI in under two minutes — no API keys to rotate, no infrastructure to provision, no vendor lock-in. Your configuration, your data, your control.

How to Connect Kentico (CMS & DXP) to Mastra AI via MCP

Follow these steps to integrate the Kentico (CMS & DXP) MCP Server with Mastra AI.

01

Install dependencies

Run npm install @mastra/core @mastra/mcp @ai-sdk/openai

02

Replace the token

Replace [YOUR_TOKEN_HERE] with your Vinkius token

03

Run the agent

Save to agent.ts and run with npx tsx agent.ts

04

Explore tools

Mastra discovers 10 tools from Kentico (CMS & DXP) via MCP

Why Use Mastra AI with the Kentico (CMS & DXP) MCP Server

Mastra AI provides unique advantages when paired with Kentico (CMS & DXP) through the Model Context Protocol.

01

Mastra's agent abstraction provides a clean separation between LLM logic and tool infrastructure. add Kentico (CMS & DXP) without touching business code

02

Built-in workflow engine chains MCP tool calls with conditional logic, retries, and parallel execution for complex automation

03

TypeScript-native: full type inference for every Kentico (CMS & DXP) tool response with IDE autocomplete and compile-time checks

04

One-command deployment to any Node.js host. Vercel, Railway, Fly.io, or your own infrastructure

Kentico (CMS & DXP) + Mastra AI Use Cases

Practical scenarios where Mastra AI combined with the Kentico (CMS & DXP) MCP Server delivers measurable value.

01

Automated workflows: build multi-step agents that query Kentico (CMS & DXP), process results, and trigger downstream actions in a typed pipeline

02

SaaS integrations: embed Kentico (CMS & DXP) as a first-class tool in your product's AI features with Mastra's clean agent API

03

Background jobs: schedule Mastra agents to query Kentico (CMS & DXP) on a cron and store results in your database automatically

04

Multi-agent systems: create specialist agents that collaborate using Kentico (CMS & DXP) tools alongside other MCP servers

Kentico (CMS & DXP) MCP Tools for Mastra AI (10)

These 10 tools become available when you connect Kentico (CMS & DXP) to Mastra AI via MCP:

01

create_system_object

Create a new Kentico system object

02

delete_system_object

Delete a Kentico system object

03

get_single_object

Get a specific Kentico system object by ID

04

get_site_document

Get a document from the Kentico Xperience CMS

05

get_user

Get details for a specific Kentico user

06

list_custom_table_rows

List rows from a Kentico custom table

07

list_system_objects

g., roles provisions, page templates) from Kentico REST. List Kentico system objects by type

08

list_users

user in Kentico. List global Kentico users

09

update_site_document

Update an existing document in the Kentico CMS

10

update_system_object

Update an existing Kentico system object

Example Prompts for Kentico (CMS & DXP) in Mastra AI

Ready-to-use prompts you can give your Mastra AI agent to start working with Kentico (CMS & DXP) immediately.

01

"Get the 'Home' page document from site 'CorporateSite' in 'en-us' culture"

02

"Update the DocumentName of '/About-Us' to 'Our Team' on currentsite"

03

"List all rows from the custom table 'MyCompany.Inventory'"

Troubleshooting Kentico (CMS & DXP) MCP Server with Mastra AI

Common issues when connecting Kentico (CMS & DXP) to Mastra AI through the Vinkius, and how to resolve them.

01

createMCPClient not exported

Install: npm install @mastra/mcp

Kentico (CMS & DXP) + Mastra AI FAQ

Common questions about integrating Kentico (CMS & DXP) MCP Server with Mastra AI.

01

How does Mastra AI connect to MCP servers?

Create an MCPClient with the server URL and pass it to your agent. Mastra discovers all tools and makes them available with full TypeScript types.
02

Can Mastra agents use tools from multiple servers?

Yes. Pass multiple MCP clients to the agent constructor. Mastra merges all tool schemas and the agent can call any tool from any server.
03

Does Mastra support workflow orchestration?

Yes. Mastra has a built-in workflow engine that lets you chain MCP tool calls with branching logic, error handling, and parallel execution.

Connect Kentico (CMS & DXP) to Mastra AI

Get your token, paste the configuration, and start using 10 tools in under 2 minutes. No API key management needed.