AI, agents, and MCP

This section explains how Tealfabric AI capabilities, agent interfaces, and MCP resources work together in production workflows. It is designed for users who need to configure, operate, and govern AI-enabled automation safely and effectively.

Document information
FieldValue
Canonical URL/docs/07_ai-agents-and-mcp/00_introduction
Version (published date)2026-05-21
Tagsai, mcp, agents

AI, agents, and MCP overview showing agent interaction patterns, MCP configuration controls, and secure orchestration governance.

What this section covers

Use this section to understand how agent endpoints are structured, how MCP resources are configured, and how both connect to orchestration workflows. The focus is operational clarity: what to configure, what to monitor, and how to enforce safe behavior.

You will find guidance for request and response patterns, MCP schema and guardrails references, and governance-oriented practices for production usage. This helps teams move from experimentation to reliable AI operations.

How this differs from step-code recipes

This section does not replace step-level coding recipes for LLM calls inside process steps. Instead, it documents system-level capabilities and controls, while step-code docs focus on implementation snippets and code patterns.

Use both documentation areas together when building end-to-end workflows: this section for platform behavior and control surfaces, and step-code docs for execution-level integration logic.

Agents in this section

AgentDocTypical use
Trace AITrace AI AgentMCP chat with tenant skills loaded on demand (load_tenant_skill)
Platform Engineer AgentPlatform Engineer AgentMCP chat with live platform context (no on-demand skills)
Tenant skills (authoring)Tenant skills user guidePackage instructions under SKILLS/ for Trace AI
In-loop waitAgent wait toolagent_wait — bounded pause inside the tool loop with live progress
Platform actionsPlatform actionsRead/write MCP tools for tenant console parity
Skills → tools mapPlatform skills quick referenceWhich load_platform_skill unlocks which tools
Payload contractsAgent payload contractsDescribe-before-write pipeline for agents

The in-app agent picker loads entries from GET /api/v1/chat/agents (policy-driven). Trace AI requires CHAT_TENANT_SKILLS_ENABLED=1 on the API deployment for skill loading.

Recommended reading path

Start with this introduction and MCP guardrails configuration schema to understand boundaries. If you author tenant playbooks, read the tenant skills user guide, then Trace AI Agent for API and chat usage. For automation without skills, use the Platform Engineer Agent doc. When agents must pause between tool steps, see Agent wait tool.

After configuration is stable, use cross-linked step-code recipes to implement concrete prompt and API logic in workflow steps.

See also