Lyzr MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Lyzr MCP or direct API to build agents, run evaluations, manage knowledge bases, and orchestrate workflows through natural language.

Lyzr logoLyzr
Api Key

Lyzr is an AI agent platform for building, running, evaluating, and managing agents. It helps teams ship safer AI workflows with Studio services for memory, voice, simulations, and knowledge bases.

22 Tools

Try Lyzr now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Lyzr
Try asking
TOOLS

Supported Tools

Every Lyzr action and event your agent gets out of the box.

Add Memory Messages

Store a batch of conversation messages in Lyzr Memory for an owner, session, and optional agent, with optional synchronous fact extraction.

Chat With Agent

Send a message or message history to an active Agent Studio agent and return its synchronous inference response for a session.

Clear Memory Session

Permanently clear messages and memories for one explicit owner and session in Lyzr Memory.

Create Agent

Create a single-task Agent Studio agent with an LLM provider, model, instructions, and optional tool configuration.

Create Agent Schedule

Create a cron schedule that runs one Agent Studio agent with a message in a specified timezone.

Delete Agent

Permanently delete one Agent Studio agent by ID.

Delete Agent Schedule

Permanently delete one agent cron schedule and remove its associated scheduler job.

Evaluate Text With RAI Policy

Apply one owned Responsible AI policy to text and return processed text, block decisions, warnings, detections, and redactions.

Get Agent

Return the current configuration and status of one Agent Studio agent by ID.

Get Knowledge Base

Return one Lyzr Knowledge Base configuration by its known RAG configuration ID.

Get Simulation Overview

Return aggregate Agent Simulation counts and average evaluation pass rate for the connected workspace.

List Agents

Return all Agent Studio agents owned by the connected API key, including IDs needed by lifecycle and inference tools.

List Agent Schedules

Return one page of agent cron schedules, optionally filtered by user, agent, or active state.

List Agent Simulation Issues

Return recent performance, error, and Responsible AI issues across monitored agents, optionally filtered by resolution and severity.

List RAI Policies

Return Responsible AI policies owned by the authenticated user, including policy IDs and enabled guardrail configuration.

List SuperFlow Executions

Return one page of SuperFlow execution records, optionally filtered by workflow and execution status.

List SuperFlow Workflows

Return all SuperFlow workflow definitions accessible to the connected API key, including workflow IDs and graph data.

List Voice Agents

Return saved Voice agents accessible to the connected organization, including IDs used to filter transcripts.

List Voice Transcripts

Return one page of accessible Voice call transcripts, optionally filtered by agent, session, organization, or date range.

Retrieve Knowledge

Retrieve relevant documents from a known Lyzr Knowledge Base using configurable basic, MMR, hypothetical-document, or time-aware retrieval.

Search Memories

Semantically search stored memories for one owner, within one session or across that owner's sessions, using Lyzr's hybrid vector and BM25 retrieval.

Set Agent Status

Activate or deactivate an Agent Studio agent.

SETUP GUIDE

Connect Lyzr MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for Lyzr
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Query my Lyzr knowledge base for onboarding policy gaps'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect Lyzr API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Lyzr Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List my Lyzr Studio agents and summarize their latest evaluation status'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Lyzr actions with your Agent

Why Use Composio?

AI Native Lyzr Integration

  • Supports both Lyzr MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable Lyzr agent, workflow, and knowledge base actions
  • Rich coverage for building, running, evaluating, and managing your Lyzr Studio services

Managed Auth

  • Secure API key handling without hard-coding Lyzr credentials in your agent code
  • Central place to manage, scope, and revoke Lyzr access
  • Per user and per environment credentials so dev, staging, and production stay clean

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf
  • Clear tool inputs help agents work with Lyzr evaluations, simulations, memory, and workflows with fewer failed calls

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Lyzr
  • Scoped, least privilege access to Lyzr agents, workflows, and Studio resources
  • Full audit trail of agent actions to support review, debugging, and compliance
FAQ

Frequently asked questions

Yes, Lyzr requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Lyzr.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Lyzr tool your agent needs.Free to start.

Start building