# Mastra Class The `Mastra` class is the central orchestrator in any Mastra application, managing agents, workflows, storage, logging, observability, and more. Typically, you create a single instance of `Mastra` to coordinate your application. Think of `Mastra` as a top-level registry where you register agents, workflows, tools, and other components that need to be accessible throughout your application. ## Usage example ```typescript import { Mastra } from "@mastra/core"; import { PinoLogger } from "@mastra/loggers"; import { LibSQLStore } from "@mastra/libsql"; import { weatherWorkflow } from "./workflows/weather-workflow"; import { weatherAgent } from "./agents/weather-agent"; export const mastra = new Mastra({ workflows: { weatherWorkflow }, agents: { weatherAgent }, storage: new LibSQLStore({ id: 'mastra-storage', url: ":memory:", }), logger: new PinoLogger({ name: "Mastra", level: "info", }), }); ``` ## Constructor parameters Visit the [Configuration reference](https://mastra.ai/reference/configuration/llms.txt) for detailed documentation on all available configuration options. ### agents?: Record\ Agent instances to register, keyed by name ### tools?: Record\ Custom tools to register. Structured as a key-value pair, with keys being the tool name and values being the tool function. ### storage?: MastraCompositeStore Storage engine instance for persisting data ### vectors?: Record\ Vector store instance, used for semantic search and vector-based tools (eg Pinecone, PgVector or Qdrant) ### logger?: Logger Logger instance created with new PinoLogger() ### idGenerator?: () => string Custom ID generator function. Used by agents, workflows, memory, and other components to generate unique identifiers. ### workflows?: Record\ Workflows to register. Structured as a key-value pair, with keys being the workflow name and values being the workflow instance. ### tts?: Record\ Text-to-speech providers for voice synthesis ### observability?: ObservabilityEntrypoint Observability configuration for tracing and monitoring ### deployer?: MastraDeployer An instance of a MastraDeployer for managing deployments. ### server?: ServerConfig Server configuration including port, host, timeout, API routes, middleware, CORS settings, and build options for Swagger UI, API request logging, and OpenAPI docs. ### mcpServers?: Record\ An object where keys are registry keys (used for getMCPServer()) and values are instances of MCPServer or classes extending MCPServerBase. Each MCPServer must have an id property. Servers can be retrieved by registry key using getMCPServer() or by their intrinsic id using getMCPServerById(). ### bundler?: BundlerConfig Configuration for the asset bundler with options for externals, sourcemap, and transpilePackages. ### scorers?: Record\ Scorers for evaluating agent responses and workflow outputs ### processors?: Record\ Input/output processors for transforming agent inputs and outputs ### gateways?: Record\ Custom model gateways to register for accessing AI models through alternative providers or private deployments. Structured as a key-value pair, with keys being the registry key (used for getGateway()) and values being gateway instances. ### memory?: Record\ Memory instances to register. These can be referenced by stored agents and resolved at runtime. Structured as a key-value pair, with keys being the registry key and values being memory instances.