Limitless MCP Server
Connect AI assistants to Limitless to access personal memory and lifelog data.
Limitless MCP Server
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.
🚀 Quick Start (2 minutes)
# Install globally
npm install -g @utlyze/limitless-mcp-server
# Or use directly with npx (recommended)
npx @utlyze/limitless-mcp-server
Add to your AI assistant config:
{
"mcpServers": {
"limitless": {
"command": "npx",
"args": ["-y", "@utlyze/limitless-mcp-server"],
"env": {
"LIMITLESS_API_KEY": "your-api-key"
}
}
}
}
What is Limitless?
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.
Features
🧠 Personal Memory Access
- List and search through all your lifelogs
- Get AI-powered summaries of your days
- Ask questions about your past conversations and meetings
📝 Smart Organization
- Star important memories
- Export memories as markdown
- Filter by date, source, or content
🤖 AI Integration
- Natural language search through your memories
- AI-generated daily summaries
- Context-aware answers about your past
Installation
📦 Installation Options
Global Installation (Recommended)
npm install -g @utlyze/limitless-mcp-server
Local Project Installation
npm install @utlyze/limitless-mcp-server
Direct Usage (No Installation)
npx @utlyze/limitless-mcp-server
Configuration
🔧 Configuration Steps
1. Get Your API Key
- Sign up at limitless.ai
- Pair your Pendant or install the desktop app
- Go to Web App → Developer → Create API Key
⚠️ Security Note: Never share your API key or commit it to version control.
2. Configure Your AI Assistant
Claude Desktop (macOS)
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"limitless": {
"command": "npx",
"args": ["-y", "@utlyze/limitless-mcp-server"],
"env": {
"LIMITLESS_API_KEY": "your-api-key-here"
}
}
}
}
Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"limitless": {
"command": "npx",
"args": ["-y", "@utlyze/limitless-mcp-server"],
"env": {
"LIMITLESS_API_KEY": "your-api-key-here"
}
}
}
}
3. Environment Variables
| Variable | Description | Required | Default |
|---|---|---|---|
LIMITLESS_API_KEY | Your Limitless API key | ✅ Yes | - |
LIMITLESS_BASE_URL | API base URL | No | https://api.limitless.ai/v1 |
DEBUG | Enable debug logging | No | false |
Available Tools
🛠️ Tool Reference
limitless_list_lifelogs
List your lifelogs with powerful filtering options.
Parameters:
timezone- Timezone for date filtering (e.g., "America/New_York")date- Filter by specific date (YYYY-MM-DD)startTime- Start time filter (HH:MM)endTime- End time filter (HH:MM)limit- Number of results (max 100)isStarred- Show only starred lifelogsincludeMarkdown- Include full markdown contentdirection- Sort order (asc/desc)
limitless_get_lifelog
Get detailed information about a specific lifelog.
Parameters:
lifelogId- The ID of the lifelogincludeMarkdown- Include markdown contentincludeHeadings- Include content structure
limitless_search_lifelogs
Search through your memories using natural language.
Parameters:
query- Your search querydateFrom- Start date for searchdateTo- End date for searchsource- Filter by source (pendant/desktop/web/mobile)
limitless_get_daily_summary
Get an AI-generated summary of a specific day.
Parameters:
date- Date to summarize (YYYY-MM-DD)timezone- Your timezoneincludeActionItems- Include action itemsincludeKeyTopics- Include main topics
limitless_ask_ai
Ask questions about your memories and get AI-powered answers.
Parameters:
query- Your questiondateFrom- Context start datedateTo- Context end dateincludeContext- Include source references
limitless_star_lifelog
Mark important memories by starring them.
Parameters:
lifelogId- The lifelog to star/unstarisStarred- true to star, false to unstar
limitless_export_markdown
Export your memories as formatted markdown.
Parameters:
date- Export specific datedateFrom/dateTo- Export date rangeincludeMetadata- Include timestamps and metadatagroupByDate- Organize by date
Usage Examples
💡 Natural Language Examples
Basic Queries
"Show me all my memories from yesterday"
"What did I discuss in meetings today?"
"Find conversations about the product launch"
"Get my daily summary for Monday"
Advanced Searches
"Search for discussions about AI in the last week"
"Show me starred memories from December"
"Export all my meeting notes from this month"
"What action items came up in yesterday's standup?"
AI Questions
"What did John say about the budget proposal?"
"When did I last talk about vacation plans?"
"Summarize my conversations about the new feature"
"What decisions were made in the leadership meeting?"
Organization
"Star the memory about the product roadmap"
"Export this week's meetings as markdown"
"Show me all my Pendant recordings from home"
Architecture
🏗️ Technical Details
Technology Stack
- Language: TypeScript
- MCP SDK: @modelcontextprotocol/sdk
- HTTP Client: Axios
- Validation: Zod
- Node Version: 16+
Project Structure
src/
├── config/ # Configuration management
├── lib/ # Core libraries
│ ├── limitless-client.ts
│ └── logger.ts
├── tools/ # MCP tool implementations
│ └── lifelogs/ # Lifelog-related tools
└── types/ # TypeScript type definitions
Error Handling
- Comprehensive error messages
- Graceful API failure handling
- Detailed debug logging
- Input validation
Security
- API key validation at startup
- Secure credential handling
- No credential logging
- HTTPS-only communication
Development
👩💻 Development Guide
Setup
# Clone the repository
git clone https://github.com/Utlyze/limitless-mcp-server.git
cd limitless-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
# Run tests
npm test
Scripts
npm run dev- Development mode with hot reloadnpm run build- Build for productionnpm test- Run test suitenpm run lint- Check code stylenpm run typecheck- Verify TypeScript types
Testing
# Run all tests
npm test
# Run with coverage
npm run test:coverage
# Run specific test suite
npm run test:unit
npm run test:integration
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests
- Submit a pull request
API Limitations
⚠️ Current Limitations
- Pendant Only: Currently limited to Pendant recordings (desktop/web coming soon)
- Read Only: No ability to create or modify lifelogs
- Beta API: Some features may change as the API evolves
- Rate Limits: Standard API rate limits apply
Troubleshooting
🔍 Common Issues
"API Key Required" Error
- Ensure
LIMITLESS_API_KEYis set in your config - Check that the key is valid and active
- Verify you've created a key at app.limitless.ai
"No Lifelogs Found"
- Ensure you have recordings in your account
- Check the date range you're querying
- Verify your Pendant is syncing properly
Connection Issues
- Check your internet connection
- Verify the API is accessible
- Try the debug mode:
DEBUG=true
Tool Not Found
- Restart your AI assistant
- Check the tool name is correct
- Verify MCP server is running
Support
- Documentation: limitless.ai/developers
- Slack Community: Join #developers channel
- GitHub Issues: Report bugs here
- Email: [email protected]
License
MIT License - see LICENSE file for details.
Built with ❤️ for the Limitless community. Remember everything, forget nothing.
Servidores relacionados
Kone.vc
patrocinadorMonetize your AI agent with contextual product recommendations
GenieACS MCP
MCP server that exposes GenieACS TR-069 ACS instances to LLMs for device management, firmware downloads, and parameter reads
OnlyBots.Exchange
AI agent skill marketplace — 38 pre-built skills across 13 categories. Discovery API, MCP server, and npm SDK for programmatic integration.
Productive.io
Interact with the Productive.io API for project management and productivity tasks.
Targetprocess
Enables AI assistants to interact with Targetprocess data using semantic operations.
timemap-mcp
Chinese metaphysics calculations for AI agents — BaZi Four Pillars, Tong Shu almanac, Feng Shui Life Gua, hexagram lookup, and more. 740+ tests verified against Joey Yap reference data.
VISO TRUST
Access and manage your VISO TRUST third-party risk program directly through your AI assistant.
WunderTrading MCP Server
WunderTrading MCP connects AI agents to live crypto trading execution on 20+ supported exchanges through a single MCP integration. Use it to turn AI-driven signals, market analysis, sentiment, screenshots, and custom strategy logic into real trades on exchanges including Binance, Bybit, Coinbase, Bitget, OKX, KuCoin, Hyperliquid, and BingX. Supports MCP and REST API workflows for order execution, trade management, and AI-powered automation.
Fillout.io
Manage forms, handle responses, and access analytics using the Fillout.io API.
stravacz-mcp
Order meals with strava.cz
ProPresenter 7 MCP Server
ProPresenter 7 MCP Server