Limitless MCP Server

Connect AI assistants to Limitless for personal memory and lifelog access

Local serverstdioTypeScript

What is the Limitless MCP server?

Most knowledge and memory work still happens through a UI a human drives. Limitless MCP server moves it into the conversation instead. Connect AI assistants to Limitless for personal memory and lifelog access.

The short version

Connect AI assistants to your personal memory through Limitless AI's powerful lifelog system. Access your Pendant recordings, meeting notes, and personal insights directly from Claude, Cursor, or any MCP-compatible AI assistant.

Limitless is a personal AI that captures and organizes everything you've seen, said, or heard. Using their Pendant device or desktop app, Limitless creates a searchable memory of your life that you can query and learn from.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • Cursor — The Cursor tool exposed by this server
  • limitless_list_lifelogs — The limitless_list_lifelogs tool exposed by this server
  • limitless_get_lifelog — The limitless_get_lifelog tool exposed by this server
  • limitless_search_lifelogs — The limitless_search_lifelogs tool exposed by this server
  • limitless_get_daily_summary — The limitless_get_daily_summary tool exposed by this server
  • limitless_ask_ai — Ask questions about your memories and get AI-powered answers
  • limitless_star_lifelog — The limitless_star_lifelog tool exposed by this server
  • limitless_export_markdown — The limitless_export_markdown tool exposed by this server
  • Organization — The Organization tool exposed by this server
  • Security — The Security tool exposed by this server
  • Setup — The Setup tool exposed by this server
  • Scripts — The Scripts tool exposed by this server

What it needs from you

Configuration is passed through the environment: LIMITLESS_API_KEY, LIMITLESS_BASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

The server ships on npm as @utlyze/limitless-mcp-server, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Limitless's toolset — Cursor, limitless_list_lifelogs, limitless_get_lifelog and 11 more — is a fair guide to whether it matches your workflow. It is maintained by h3ro-dev; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Limitless.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
CursorThe Cursor tool exposed by this server.
limitless_list_lifelogsThe limitless_list_lifelogs tool exposed by this server.
limitless_get_lifelogThe limitless_get_lifelog tool exposed by this server.
limitless_search_lifelogsThe limitless_search_lifelogs tool exposed by this server.
limitless_get_daily_summaryThe limitless_get_daily_summary tool exposed by this server.
limitless_ask_aiAsk questions about your memories and get AI-powered answers.
limitless_star_lifelogThe limitless_star_lifelog tool exposed by this server.
limitless_export_markdownThe limitless_export_markdown tool exposed by this server.
OrganizationThe Organization tool exposed by this server.
SecurityThe Security tool exposed by this server.
SetupThe Setup tool exposed by this server.
ScriptsThe Scripts tool exposed by this server.
TestingThe Testing tool exposed by this server.
Contributing1. Fork the repository 2. Create a feature branch 3. Make your changes 4. Add tests 5. Submit a pull request

How to install the Limitless MCP server

Add to your AI assistant config:
```json
{
  "mcpServers": {
    "limitless": {
      "command": "npx",
      "args": ["-y", "@utlyze/limitless-mcp-server"],
      "env": {
        "LIMITLESS_API_KEY": "your-api-key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
LIMITLESS_API_KEYCredential the server authenticates with.Yes
LIMITLESS_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Limitless to Cursor.
  • Use Limitless to limitless list lifelogs.
  • Use Limitless to limitless get lifelog.

Frequently asked questions

It connects Limitless to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Cursor, limitless_list_lifelogs, limitless_get_lifelog, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Limitless directly.