Sponsored by Deepsite.site

Advanced Limitless MCP Server (v0.3.1) 🚀

Created By
199-biotechnologies7 months ago
Advanced MCP Server with AI-powered Limitless API features: natural time queries, meeting detection, action item extraction, daily summaries, and speaker analytics
Content

Advanced Limitless MCP Server (v0.3.1) 🚀

Version License NPM

An intelligent MCP (Model Context Protocol) server that transforms your Limitless Pendant data into actionable insights for AI tools like Claude, Windsurf, and others. This enhanced version provides advanced features like natural language time queries, automatic meeting detection, smart action item extraction, and comprehensive daily summaries.

🆚 Original vs Enhanced Comparison

FeatureOriginal v0.1.0Enhanced v0.2.0+Improvement
Time QueriesManual date calculation requiredNatural language: "today", "past week", "last Monday"🎯 10x easier
Meeting DetectionManual log analysisAutomatic detection with participants, topics, action items🤖 Fully automated
Search ScopeRecent 20 logs onlyFull history with relevance scoring🔍 50x larger scope
Action ItemsManual extraction from logsSmart pattern recognition with prioritiesIntelligent extraction
Daily InsightsNone - manual analysis requiredComprehensive summaries with productivity metrics📊 Complete analytics
Speaker AnalysisBasic speaker names onlyFull conversation analytics with patterns👥 Deep relationship insights
User Experience3-5 tool calls for simple tasks1 tool call with intelligent results5x faster workflows

✨ What's New in v0.3.1:

  • 📅 50+ Natural Time Expressions - "last month", "tomorrow", "this weekend", etc.
  • 🎯 Flexible Relative Dates - "past 5 days", "in 2 weeks", "3 days ago"
  • 💼 Business Time Support - Quarters (Q1-Q4), year references, month boundaries
  • 🌅 Enhanced Time Periods - "yesterday afternoon", "tomorrow morning", "last night"

Previous v0.3.0 Features:

  • 📄 Raw Transcript Extraction - Clean, AI-optimized transcript formats
  • 🔬 Detailed Technical Analysis - Precision extraction of scientific/medical terms
  • 🎯 Multi-Format Support - Raw text, verbatim, structured, timestamps
  • 📊 Enhanced Context Preservation - Maximum technical detail retention

Previous v0.2.0 Features:

  • 🕒 Natural Time Queries - "yesterday", "this morning", "past week"
  • 🤝 Smart Meeting Detection - Automatic participant and topic extraction
  • 🔍 Full History Search - Search ALL lifelogs with intelligent context
  • 📊 Daily Summaries - Complete productivity insights and analytics
  • 👥 Speaker Analytics - Detailed conversation analysis per person
  • Action Item Extraction - Smart task recognition with priority inference

Enhanced by: Boris Djordjevic, 199 Longevity
Original Foundation by: Ryan Boyle (ipvr9)

Quick Start with npx (No Installation Required!)

You can run this intelligent MCP server directly using npx without any installation:

{
  "mcpServers": {
    "limitless": {
      "command": "npx",
      "args": ["199bio-mcp-limitless-server"],
      "env": {
        "LIMITLESS_API_KEY": "<YOUR_LIMITLESS_API_KEY_HERE>"
      }
    }
  }
}

This automatically downloads v0.3.1 with all advanced features when your MCP client starts.

🎯 Perfect for Claude AI Users

The v0.3.1 upgrade transforms your Claude conversations with Limitless data:

Before: "Let me check your logs... reads through everything ... based on my analysis..."
After: "What action items came from today's meetings?" → Instant intelligent response

Common Use Cases:

  • 💼 "Give me a summary of yesterday's meetings"
  • ✅ "What do I need to do from today's conversations?"
  • 👥 "How much did I talk with my manager this week?"
  • 🔍 "When did I last discuss the budget proposal?"
  • 📊 "Show me my productivity insights for today"

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)
  • 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.

Installation Options

Simply configure your MCP client to use npx as shown in the Quick Start section above. The server will be downloaded and run automatically.

Option 2: Local Installation

  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.

For npx usage:

{
  "mcpServers": {
    "limitless": {
      "command": "npx",
      "args": ["199bio-mcp-limitless-server"],
      "env": {
        "LIMITLESS_API_KEY": "<YOUR_LIMITLESS_API_KEY_HERE>"
      }
    }
  }
}

For local installation:

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 <YOUR_LIMITLESS_API_KEY_HERE> with your actual Limitless API key.
  • For local installation, 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).
  • MCP config files cannot contain comments. Remove any placeholder text and replace it with actual values.

Running the Server

For npx: Your MCP client will automatically download and run the server when needed.

For local installation:

  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.

🛠️ Available MCP Tools (v0.3.1)

🎯 Smart & Intuitive (NEW!)

  1. limitless_get_by_natural_time - Natural language time queries ✨ ENHANCED in v0.3.0

    • Basic: "today", "yesterday", "tomorrow"
    • Time periods: "this morning", "yesterday afternoon", "last night", "tomorrow evening"
    • Calendar: "last month", "this month", "next month", "this year", "last year" 🆕
    • Weeks: "this week", "last week", "next week", "past 2 weeks" 🆕
    • Weekends: "this weekend", "last weekend", "next weekend" 🆕
    • Relative: "past 5 days", "3 days ago", "in 2 days", "recently", "the other day" 🆕
    • Business: "Q1", "Q2", "Q3", "Q4", "this quarter", "last quarter" 🆕
    • Boundaries: "beginning of the month", "end of the week", "start of the month" 🆕
    • Same-day: "earlier today", "earlier", "later today" 🆕
    • Perfect for: Natural conversation queries like "What did I discuss last month?"
  2. limitless_detect_meetings - Automatic meeting detection & analysis

    • Intelligence: Participant extraction, topics, action items, duration
    • Perfect for: "What meetings did I have today?"
  3. limitless_search_conversations_about - Full history search with context

    • Advanced: Searches ALL lifelogs (not just recent 20), includes context
    • Perfect for: "When did I last discuss Project Alpha?"
  4. limitless_get_daily_summary - Comprehensive daily insights

    • Analytics: Meetings, action items, productivity metrics, key participants
    • Perfect for: "Give me a summary of yesterday"
  5. limitless_analyze_speaker - Detailed speaker analytics

    • Insights: Speaking time, topics, interaction patterns, frequency
    • Perfect for: "How much did I talk with Sarah this month?"
  6. limitless_extract_action_items - Smart task extraction

    • Intelligence: Context-aware, priority inference, assignee detection
    • Perfect for: "What do I need to do from today's meetings?"
  7. limitless_get_raw_transcript - Extract clean transcripts for AI processing 🆕

    • Formats: raw_text, verbatim, structured, timestamps, speakers_only
    • Perfect for: "Give me the exact transcript without formatting"
  8. limitless_get_detailed_analysis - Technical precision analysis 🆕

    • Focus areas: technical, financial, decisions, research, all
    • Perfect for: "What were the exact specifications mentioned?"

📚 Core Foundation Tools

  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).

📅 Supported Natural Time Expressions (v0.3.1)

The enhanced time parser now supports over 50 natural language expressions:

Basic Time References

  • today, yesterday, tomorrow
  • morning, afternoon, evening, tonight
  • earlier today, earlier, later today

Specific Time Periods

  • yesterday morning, yesterday afternoon, yesterday evening, last night
  • tomorrow morning, tomorrow afternoon, tomorrow evening
  • this morning, this afternoon, this evening

Calendar Periods 🆕

  • Months: last month, this month, next month
  • Years: last year, this year
  • Quarters: Q1, Q2, Q3, Q4, this quarter, last quarter

Week & Weekend References 🆕

  • this week, last week, next week
  • this weekend, last weekend, next weekend

Flexible Relative Expressions 🆕

  • Past: past N days/weeks/months (e.g., past 5 days, past 2 weeks)
  • Ago: N days/weeks/months ago (e.g., 3 days ago, 2 weeks ago)
  • Future: in N days/weeks/months (e.g., in 2 days, in a week)

Informal References 🆕

  • recently (past 14 days)
  • the other day (2-4 days ago)
  • a few days ago (2-4 days ago)
  • a couple days ago (exactly 2 days ago)

Boundary References 🆕

  • beginning of the week, start of the week
  • end of the week
  • beginning of the month, start of the month
  • end of the month

Day Names

  • monday, tuesday, wednesday, etc.
  • last monday, next friday
  • last tuesday (most recent Tuesday)

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.

🔬 Technical Architecture

v0.3.1 Advanced Features:

  • Natural Language Processing: Robust time expression parser with timezone support
  • Machine Learning Patterns: Intelligent meeting detection using speaker analysis
  • Context-Aware Search: Full-text search with relevance scoring and context inclusion
  • Analytics Engine: Comprehensive daily summaries with productivity insights
  • Relationship Intelligence: Speaker analytics with temporal patterns

Built with Production Standards:

  • TypeScript with comprehensive type safety
  • Modular architecture with separation of concerns
  • Robust error handling and graceful degradation
  • Memory-efficient processing for large datasets
  • Timezone-aware processing throughout

🚧 Roadmap & Future Enhancements

📋 Completed Features ✅

  • ✅ Natural language time parsing with timezone support
  • ✅ Intelligent meeting detection with speaker analysis
  • ✅ Full history search with context and relevance scoring
  • ✅ Comprehensive daily summaries with productivity insights
  • ✅ Speaker analytics with conversation patterns
  • ✅ Smart action item extraction with priority inference
  • ✅ Production-quality TypeScript architecture
  • ✅ Robust error handling and performance optimization

🔮 Planned Features (v0.3.0+)

  • 🔄 Intelligent Caching Layer - Smart caching for repeated queries
  • 🧪 Unit Test Suite - Comprehensive testing for all features
  • 📈 Advanced Analytics - Weekly/monthly productivity trends
  • 🎯 Goal Tracking - Action item completion tracking
  • 🔔 Smart Notifications - Proactive insights and reminders
  • 📊 Custom Reports - Configurable productivity reports
  • 🤖 AI Insights - Machine learning-powered conversation insights
  • 🔍 Semantic Search - Meaning-based search beyond keywords
  • 📝 Meeting Templates - Auto-generate meeting notes formats
  • 🔗 Integration APIs - Connect with Notion, Todoist, Calendar apps

🤝 Contributing

Enhanced by Boris Djordjevic from 199 Longevity with advanced AI features.
Original foundation by Ryan Boyle (ipvr9).

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.

Repository: https://github.com/199-biotechnologies/limitless-bettermcp
NPM Package: https://www.npmjs.com/package/199bio-mcp-limitless-server

Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
Playwright McpPlaywright MCP server
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
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.
Serper MCP ServerA Serper MCP Server
CursorThe AI Code Editor
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"
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
WindsurfThe new purpose-built IDE to harness magic
ChatWiseThe second fastest AI chatbot™
Tavily Mcp
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
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.
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
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.
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.
Amap Maps高德地图官方 MCP Server