.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/letta-ai/letta
home/mcp-servers/letta-ai/letta
letta-ai avatar

letta

byletta-ai· 1 MCP server

Stars

24k

Forks

2.6k

Category

AI Agents & MCP

View on GitHub

TL;DR

Create LLM agents with long-term memory and custom tools

How to install letta?

letta-ai/letta
$git clone https://github.com/letta-ai/letta

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install letta by running `git clone https://github.com/letta-ai/letta`, then use it for the current task and follow its documentation at https://github.com/letta-ai/letta.

Files · 1

View on GitHub
README.md
1# Letta (formerly MemGPT)
2 
3Build AI with advanced memory that can learn and self-improve over time.
4 
5* [Letta Agent](https://docs.letta.com/letta-agent): run agents locally in your terminal, via the desktop app, or via channels like Slack
6* [Letta Agent SDK](https://docs.letta.com/letta-agent-sdk/overview): build agents into your applications
7 
8> [!NOTE]
9> This repository contains the legacy Letta server (the API server behind the Letta V1 API and SDKs). Active development has moved to the [Letta Agent repo](https://github.com/letta-ai/letta-code), and self-hosting an API server is now done via the [App Server](https://docs.letta.com/letta-agent/app-server). See [AGENTS.md](AGENTS.md) for details.
10 
11## Get started in the CLI
12 
13Requires [Node.js 22.19+](https://nodejs.org/en/download)
14 
151. Install the [Letta Code](https://github.com/letta-ai/letta-code) CLI tool: `npm install -g @letta-ai/letta-code`
162. Run `letta` in your terminal to launch an agent with memory running on your local computer
17 
18When running the CLI tool, your agent can help you code and do any task you can do on your computer.
19 
20Letta Code supports [skills](https://docs.letta.com/letta-agent/skills) and [subagents](https://docs.letta.com/letta-agent/subagents), and bundles pre-built skills/subagents for advanced memory and continual learning. Letta is fully model-agnostic, though we recommend the latest Anthropic, OpenAI, and zAI models for best performance (see our [model leaderboard](https://leaderboard.letta.com/) for our rankings).
21 
22## Get started with the Letta Agent SDK
23 
24Use the [Letta Agent SDK](https://docs.letta.com/letta-agent-sdk/overview) (TypeScript) to build stateful agents into your own applications.
25The SDK can run agents on [Constellation](https://docs.letta.com/letta-agent/constellation) (Letta's agent cloud), fully locally on your machine, or against a self-hosted [App Server](https://docs.letta.com/letta-agent/app-server).
26 
27### Installation
28 
29```bash
30npm install @letta-ai/letta-agent-sdk
31```
32 
33### Hello World example
34 
35Below is a quick example of creating a stateful agent and streaming a conversation with it (requires a [Letta API key](https://app.letta.com/api-keys)).
36See the full [quickstart guide](https://docs.letta.com/letta-agent-sdk/quickstart) for complete documentation.
37 
38```typescript
39import { LettaAgentClient } from "@letta-ai/letta-agent-sdk";
40 
41const client = new LettaAgentClient({
42 backend: "cloud",
43 apiKey: process.env.LETTA_API_KEY,
44});
45 
46// Create your agent
47const agentId = await client.createAgent({
48 model: "anthropic/claude-opus-4-8",
49 human:
50 "Name: Timber. Status: dog. Occupation: building Letta, infrastructure to democratize self-improving superintelligence",
51 persona:
52 "I am a self-improving superintelligence. Timber is my best friend and collaborator.",
53});
54 
55console.log("Agent created with ID:", agentId);
56 
57// Send your agent a message and stream the response
58await using session = client.resumeSession(agentId);
59 
60await session.send("What do you know about me?");
61for await (const message of session.stream()) {
62 if (message.type === "assistant") console.log(message.content);
63}
64```
65 
66To run the same agent fully locally (the SDK spawns [Letta Code](https://github.com/letta-ai/letta-code) on your machine as a subprocess), swap out the client:
67 
68```typescript
69const client = new LettaAgentClient({ backend: "local" });
70```
71 
72### Letta V1 SDK
73 
74The previous-generation [V1 SDKs](https://docs.letta.com/guides/get-started/intro) (`@letta-ai/letta-client` for TypeScript, `letta-client` for Python) target the Letta API directly and are still available (see the [client SDKs](https://docs.letta.com/api-overview/client-sdks)). We recommend the Agent SDK for new projects.
75 
76## Contributing
77 
78Letta is an open source project built by over a hundred contributors from around the world. There are many ways to get involved in the Letta OSS project!
79 
80* [**Join the Discord**](https://discord.gg/letta): Chat with the Letta devs and other AI developers.

Preview

letta-ai/lettaletta-ai/letta
Repoletta-ai/letta
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k