Limitless MCP Server

Limitless MCP Server

Enables Claude to search, retrieve, and analyze Lifelogs from Limitless AI through a Cloudflare Workers deployment with GitHub OAuth authentication.

Category
Visit Server

README

Limitless MCP Server for Cloudflare Workers

A Model Context Protocol (MCP) server that provides Claude with access to your Limitless AI lifelogs. Deploy to Cloudflare Workers with GitHub OAuth authentication for secure access.

About Limitless

Limitless is a personalized AI wearable device (the Pendant) that helps you capture and recall conversations, meetings, and thoughts throughout your day. The Pendant features:

  • šŸŽ™ļø Conversation Recording - Captures meetings, personal reflections, and spontaneous thoughts with crystal clear audio
  • šŸ”– Moment Bookmarking - Tap the device to bookmark important moments
  • 🧠 AI-Powered Insights - Ask questions about your recorded conversations and get personalized insights
  • šŸ”’ Privacy-First - HIPAA-compliant with permission-based data protection
  • šŸ”‹ All-Day Battery - Lightweight wearable with durable aluminum body

This MCP server allows Claude to access your Limitless lifelogs, enabling you to search, retrieve, and analyze your recorded conversations directly within Claude.

Note: This project requires manual setup rather than one-click deployment because it needs secure API keys (Limitless AI, GitHub OAuth) and creates KV namespaces for OAuth token storage. The setup process ensures your credentials remain private and secure.

Features

  • šŸ” Search Lifelogs - Hybrid semantic and keyword search across all your recordings
  • šŸ“ Retrieve Full Content - Get complete lifelog content including transcripts and summaries
  • šŸ“… List Recent Recordings - Browse your latest lifelogs with date filtering
  • šŸ” Secure Authentication - GitHub OAuth integration for secure access
  • ⚔ Edge Deployment - Runs on Cloudflare Workers for low latency
  • šŸŽÆ Claude Integration - Seamlessly works with Claude.ai as a custom connector

Prerequisites

Cloudflare Workers Free Tier

This project runs perfectly on Cloudflare's free tier, which includes:

  • 100,000 requests per day (more than enough for personal use)
  • 10ms CPU time per invocation (sufficient for API calls)
  • Up to 1MB KV storage (plenty for OAuth tokens)
  • Unlimited Durable Objects (for MCP agent state)
  • No credit card required

For typical usage with Claude, you'll likely use less than 1% of these limits.

Quick Start

1. Clone and Install

git clone https://github.com/BurtTheCoder/mcp-limitless.git
cd mcp-limitless
npm install

2. Initial Setup

Run the automated setup script:

./setup.sh

This will:

  • Create your wrangler.toml configuration
  • Set up KV namespaces for OAuth storage
  • Create a .dev.vars template for local development

3. Configure API Keys

Get your Limitless API Key

  1. Go to app.limitless.ai
  2. Navigate to Settings → API
  3. Generate or copy your API key

Create GitHub OAuth App

  1. Go to GitHub Settings → Developer settings → OAuth Apps
  2. Click "New OAuth App"
  3. Fill in:
    • Application name: Limitless MCP Server
    • Homepage URL: https://your-worker.workers.dev (you'll get this after deploy)
    • Authorization callback URL: https://your-worker.workers.dev/github/callback
  4. Save your Client ID and Client Secret

Update Local Configuration

Edit .dev.vars:

LIMITLESS_API_KEY="your-limitless-api-key-here"
GITHUB_CLIENT_ID="your-github-client-id"
GITHUB_CLIENT_SECRET="your-github-client-secret"

4. Test Locally

npm run dev

Your server will be available at http://localhost:8787

Test the OAuth flow by visiting: http://localhost:8787/authorize

5. Deploy to Cloudflare

Run the deployment script:

./deploy.sh

This will prompt you to enter your secrets securely and deploy to Cloudflare Workers.

You'll get a URL like: https://limitless-mcp-server.your-account.workers.dev

6. Update GitHub OAuth App

After deployment, update your GitHub OAuth App's callback URL to:

https://limitless-mcp-server.your-account.workers.dev/github/callback

7. Connect to Claude

  1. Go to Claude.ai
  2. Navigate to Settings → Connectors
  3. Click "Add custom connector"
  4. Enter your Workers URL with /sse endpoint:
    https://limitless-mcp-server.your-account.workers.dev/sse
    
  5. Click "Add" and authorize with GitHub when prompted
  6. Enable the connector in your chat

Available Tools in Claude

Once connected, Claude will have access to these tools:

  • Limitless Ai:search_lifelogs - Search using natural language or boolean operators

    • Example: "meetings about the new project"
    • Example: "dinner OR lunch with Bob"
  • Limitless Ai:get_lifelog - Retrieve a specific lifelog by ID

    • Returns full content including transcript and summaries
  • Limitless Ai:list_recent_lifelogs - List your recent recordings

    • Supports date filtering and pagination
    • Can filter by starred status

Project Structure

mcp-limitless/
ā”œā”€ā”€ src/
│   ā”œā”€ā”€ github-oauth-index.ts  # Main entry point with OAuth
│   ā”œā”€ā”€ mcp-agent.ts           # MCP server implementation
│   ā”œā”€ā”€ simple-index.ts        # Alternative without GitHub OAuth
│   └── index.ts               # Alternative implementation
ā”œā”€ā”€ wrangler.toml.example      # Cloudflare config template
ā”œā”€ā”€ setup.sh                   # Automated setup script
ā”œā”€ā”€ deploy.sh                  # Deployment script
ā”œā”€ā”€ package.json               # Dependencies
└── README.md                  # This file

Configuration Options

Environment Variables

Variable Required Description
LIMITLESS_API_KEY Yes Your Limitless AI API key
GITHUB_CLIENT_ID Yes GitHub OAuth App Client ID
GITHUB_CLIENT_SECRET Yes GitHub OAuth App Client Secret
ENABLE_IP_ALLOWLIST No Set to "true" to only allow Anthropic IPs
RATE_LIMIT_KV No KV namespace binding for rate limiting

Customization

To use without GitHub OAuth, change the main entry in wrangler.toml:

main = "src/simple-index.ts"  # Simple approval page instead of GitHub

Troubleshooting

Connection Issues

  1. "MCP error -32000: Connection closed"

    • Ensure you're using the /sse endpoint
    • Check that OAuth authentication completed successfully
  2. "Tool not found" errors in Claude

    • Tools are namespaced as Limitless Ai:tool_name
    • Claude should automatically detect this
  3. 404 errors from Limitless API

    • Verify your API key is correct
    • Check that your Limitless account has API access enabled

Viewing Logs

# Stream live logs from your worker
npx wrangler tail

# Or view in Cloudflare Dashboard
# Go to Workers & Pages → your-worker → Logs

Rate Limits

  • Limitless API: 180 requests per minute
  • Cloudflare Workers Free: 100,000 requests per day

Security Features

Built-in Security

  • OAuth 2.0 with PKCE for secure authorization
  • API keys stored as encrypted Cloudflare secrets
  • OAuth tokens expire after 1 hour
  • GitHub OAuth provides identity verification
  • HTTPS enforced by Cloudflare Workers

Optional Enhanced Security

  • IP Allowlisting: Restrict access to Anthropic's official IPs only
  • Rate Limiting: Prevent abuse with configurable request limits
  • Security Headers: HSTS, CSP, X-Frame-Options automatically applied

To enable enhanced security features, see SECURITY.md for detailed configuration.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Test locally and with deployment
  5. Submit a pull request

License

MIT License - See LICENSE file for details

Support

Acknowledgments

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured