Letta MCP Server

create_agent

Create a new Letta agent with specified configuration

Input Schema

NameRequiredDescriptionDefault
descriptionYesDescription of the agent's purpose/role
embeddingNoThe embedding model to useopenai/text-embedding-ada-002
modelNoThe model to use for the agentopenai/gpt-4
nameYesName of the new agent

Input Schema (JSON Schema)

{ "properties": { "description": { "description": "Description of the agent's purpose/role", "type": "string" }, "embedding": { "default": "openai/text-embedding-ada-002", "description": "The embedding model to use", "type": "string" }, "model": { "default": "openai/gpt-4", "description": "The model to use for the agent", "type": "string" }, "name": { "description": "Name of the new agent", "type": "string" } }, "required": [ "name", "description" ], "type": "object" }