Sponsored by Deepsite.site

Limitless MCP Server (v0.1.0)

Created By
ipvr99 months ago
This is an MCP (Model Context Protocol) server that connects your Limitless Pendant data to AI tools like Claude, Windsurf, and others via the Limitless API. It lets AI apps and agents interact with your Lifelog in a structured, programmable way.
Content

Limitless MCP Server (v0.1.0)

Version License

This is an MCP (Model Context Protocol) server that connects your Limitless Pendant data to AI tools like Claude, Windsurf, and others via the Limitless API. It lets AI chat interfaces and agents interact with your Lifelog in a structured, programmable way. Let’s build towards a more organized, intelligent future—one context-rich interaction at a time.

What’s MCP?
Model Context Protocol is an open standard for connecting AI models to external tools and data—think of it like the USB-C port or even the HTTP protocol for AI—universal, reliable, and designed for extensibility. The standard that everyone adopts. It enables rich integrations, custom workflows, and seamless communication between AI and the tools you use every day.

IMPORTANT NOTE: As of March 2025, the Limitless API requires data recorded via the Limitless Pendant. This server depends on real data recorded from your Limitless Pendant—it won’t return anything meaningful without it. Ensure your Pendant is connected and recording.

API Status & Future Plans:

  • The official Limitless API is currently in beta. As such, it may occasionally be unreliable, subject to change, or experience temporary outages.
  • Requesting large amounts of data (e.g., listing or searching hundreds of logs) may sometimes result in timeout errors (like 504 Gateway Time-out) due to API or network constraints. The server includes a 120-second timeout per API call to mitigate this, but very large requests might still fail.
  • The Limitless API is under active development. This MCP server will be updated with new features and improvements as they become available in the official API.
  • Version 0.2.0 of this MCP server is already under development, with plans to add more robust features and potentially new tools in the near future!

Features (v0.1.0)

  • List/Get Lifelogs: Retrieve Pendant recordings by ID, date, date range, or list recent entries. Includes control over sort direction (asc/desc).
  • Search Recent Logs: Perform simple text searches within the content of a configurable number of recent Pendant recordings (Note: only recent logs are searchable; full-history search is not supported).

With this server, you can do things like pull action items from your Lifelog and send them directly into Notion—via Claude, ChatWise, Windsurf, or any other AI assistant/app that supports MCP.

Prerequisites

  • Node.js (v18 or later required)
  • npm or yarn
  • A Limitless account and API key (Get one here)
  • A Limitless Pendant (Required for data)
  • An MCP Client application (e.g., Claude, Windsurf, Cursor, ChatWise, ChatGPT (coming soon!)) capable of spawning stdio servers and passing environment variables.

Setup

  1. Clone or download this project.
  2. Navigate to the directory:
    cd mcp-limitless-server
    
  3. Install dependencies:
    npm install
    
  4. Build the code:
    npm run build
    

Configuration (Client-Side)

This server expects the LIMITLESS_API_KEY to be provided as an environment variable when it is launched by your MCP client.

You need to add a server configuration block to your MCP client's settings file. Below are two examples depending on whether you are adding this as your first server or adding it alongside existing servers.

Example A: Adding as the first/only server

If your client's configuration file currently has an empty mcpServers object ("mcpServers": {}), replace it with this:

{
  "mcpServers": {
    "limitless": {
      "command": "node",
      "args": ["<FULL_FILE_PATH_TO_DIST_SERVER.js>"],
      "env": {
        "LIMITLESS_API_KEY": "<YOUR_LIMITLESS_API_KEY_HERE>"
      }
    }
  }
}

Example B: Adding to existing servers

If your mcpServers object already contains other servers (like "notion": {...}), add the "limitless" block alongside them, ensuring correct JSON syntax (commas between entries):

{
  "mcpServers": {
    "some_other_server": {
      "command": "...",
      "args": ["..."],
      "env": {
        "EXAMPLE_VAR": "value"
      }
    },
    "limitless": {
      "command": "node",
      "args": ["<FULL_FILE_PATH_TO_DIST_SERVER.js>"],
      "env": {
        "LIMITLESS_API_KEY": "<YOUR_LIMITLESS_API_KEY_HERE>"
      }
    }
  }
}

Important:

  • Replace <FULL_FILE_PATH_TO_DIST_SERVER.js> with the correct, absolute path to the built server script (e.g., /Users/yourname/Documents/MCP/mcp-limitless-server/dist/server.js). Relative paths might not work reliably depending on the client.
  • Replace <YOUR_LIMITLESS_API_KEY_HERE> with your actual Limitless API key.
  • MCP config files cannot contain comments. Remove any placeholder text like <YOUR_LIMITLESS_API_KEY_HERE> and replace it with your actual key.

Running the Server (via Client)

Do not run npm start directly.

  1. Ensure the server is built successfully (npm run build).
  2. Configure your MCP client as shown above.
  3. Start your MCP client application. It will launch the mcp-limitless-server process automatically when needed.

Exposed MCP Tools (v0.1.0)

(Refer to src/server.ts or ask the server via your client for full details.)

  1. limitless_get_lifelog_by_id: Retrieves a single Pendant recording by its specific ID.
  2. limitless_list_lifelogs_by_date: Lists Pendant recordings for a specific date.
  3. limitless_list_lifelogs_by_range: Lists Pendant recordings within a date/time range.
  4. limitless_list_recent_lifelogs: Lists the most recent Pendant recordings.
  5. limitless_search_lifelogs: Searches title/content of recent Pendant recordings (limited scope!).

Notes & Limitations

🚫 Pendant Required
This server depends on data generated by the Limitless Pendant.

🧪 API Beta Status
The Limitless API is in beta and may experience occasional instability or rate limiting. Large requests might result in timeouts (e.g., 504 errors).

🔍 Search Scope
limitless_search_lifelogs only scans a limited number of recent logs (default 20, max 100). It does not search your full history — use listing tools first for broader analysis.

⚠️ Error Handling & Timeout
API errors are translated into MCP error results. Each API call has a 120-second timeout.

🔌 Transport
This server uses stdio and is meant to be launched by an MCP-compatible client app.

Contributing

Have ideas, improvements, or feedback? Feel free to open an issue or PR—contributions are always welcome! Let’s keep pushing the boundaries of what’s possible with wearable context and intelligent tools. https://github.com/ipvr9/mcp-limitless-server

Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
WindsurfThe new purpose-built IDE to harness magic
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
CursorThe AI Code Editor
Amap Maps高德地图官方 MCP Server
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
DeepChatYour AI Partner on Desktop
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Serper MCP ServerA Serper MCP Server
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
Playwright McpPlaywright MCP server
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
ChatWiseThe second fastest AI chatbot™
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Tavily Mcp
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.