- Advanced Limitless MCP Server (v0.3.1) 🚀
Advanced Limitless MCP Server (v0.3.1) 🚀
Advanced Limitless MCP Server (v0.3.1) 🚀
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
| Feature | Original v0.1.0 | Enhanced v0.2.0+ | Improvement |
|---|---|---|---|
| Time Queries | Manual date calculation required | Natural language: "today", "past week", "last Monday" | 🎯 10x easier |
| Meeting Detection | Manual log analysis | Automatic detection with participants, topics, action items | 🤖 Fully automated |
| Search Scope | Recent 20 logs only | Full history with relevance scoring | 🔍 50x larger scope |
| Action Items | Manual extraction from logs | Smart pattern recognition with priorities | ✅ Intelligent extraction |
| Daily Insights | None - manual analysis required | Comprehensive summaries with productivity metrics | 📊 Complete analytics |
| Speaker Analysis | Basic speaker names only | Full conversation analytics with patterns | 👥 Deep relationship insights |
| User Experience | 3-5 tool calls for simple tasks | 1 tool call with intelligent results | ⚡ 5x 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
Option 1: Using npx (Recommended - No Installation)
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
- Clone or download this project.
- Navigate to the directory:
cd mcp-limitless-server - Install dependencies:
npm install - 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:
- Ensure the server is built successfully (
npm run build). - Configure your MCP client as shown above.
- Start your MCP client application. It will launch the
mcp-limitless-serverprocess automatically when needed.
🛠️ Available MCP Tools (v0.3.1)
🎯 Smart & Intuitive (NEW!)
-
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?"
-
limitless_detect_meetings- Automatic meeting detection & analysis- Intelligence: Participant extraction, topics, action items, duration
- Perfect for: "What meetings did I have today?"
-
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?"
-
limitless_get_daily_summary- Comprehensive daily insights- Analytics: Meetings, action items, productivity metrics, key participants
- Perfect for: "Give me a summary of yesterday"
-
limitless_analyze_speaker- Detailed speaker analytics- Insights: Speaking time, topics, interaction patterns, frequency
- Perfect for: "How much did I talk with Sarah this month?"
-
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?"
-
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"
-
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
limitless_get_lifelog_by_id: Retrieves a single Pendant recording by its specific ID.limitless_list_lifelogs_by_date: Lists Pendant recordings for a specific date.limitless_list_lifelogs_by_range: Lists Pendant recordings within a date/time range.limitless_list_recent_lifelogs: Lists the most recent Pendant recordings.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,tomorrowmorning,afternoon,evening,tonightearlier today,earlier,later today
Specific Time Periods
yesterday morning,yesterday afternoon,yesterday evening,last nighttomorrow morning,tomorrow afternoon,tomorrow eveningthis 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 weekthis 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 weekend of the weekbeginning of the month,start of the monthend of the month
Day Names
monday,tuesday,wednesday, etc.last monday,next fridaylast 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