- Home
- MCP servers
- Limitless
Limitless
- javascript
23
GitHub Stars
javascript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"199-mcp-mcp-limitless": {
"command": "npx",
"args": [
"199bio-mcp-limitless-server"
],
"env": {
"LIMITLESS_API_KEY": "YOUR_API_KEY"
}
}
}
}You use this MCP server to analyze conversations from Limitless Pendant recordings, automatically detect meetings, extract action items, and deliver detailed analytics through a structured, extensible interface that works with Claude Desktop and other MCP clients.
How to use
Connect with an MCP client (such as Claude Desktop) and point it to the Limitless MCP Server. You will run the server locally or remotely and provide your API key to access Limitless Pendant data. The server exposes tools to analyze conversations, detect meetings, extract tasks, and generate summaries and reports.
Configure your MCP client to load the Limitless server. Use the following configuration to register the server so your client can communicate via JSON-RPC over stdio. This configuration assumes you have the Limitless API key available.
{
"mcpServers": {
"limitless": {
"command": "npx",
"args": ["199bio-mcp-limitless-server"],
"env": {
"LIMITLESS_API_KEY": "your-api-key-here"
}
}
}
}
How to install
Prerequisites: you need Node.js and npm installed on your system. You will install the MCP server globally so you can run it from any terminal.
Install the Limitless MCP Server package globally with npm.
npm install -g 199bio-mcp-limitless-server
Additional notes
This server runs as a JSON-RPC service over stdio, intended to be used by Claude Desktop or compatible MCP clients. It is not an HTTP web server.
Troubleshooting and tips
If you encounter a message about responses being too long, or you see token length related warnings, adjust your client usage by requesting smaller outputs or using the server’s pagination features and output formats.
If you run into connection issues, ensure you configure the MCP client to load the STDIO-based server configuration rather than attempting HTTP requests.
Available tools
limitless_detect_meetings
Automatically identifies meetings from conversations and groups related content for easier analysis.
limitless_extract_action_items
Extracts tasks and commitments from conversations with context and due dates when available.
limitless_get_raw_transcript
Returns the exact transcript for a conversation for downstream processing or auditing.
limitless_get_daily_summary
Generates daily summaries with participants and key topics across conversations.
limitless_get_full_transcript
Fetches complete transcript data with automatic pagination to handle large datasets.
limitless_get_by_natural_time
Supports natural language time queries like yesterday or last week for flexible searching.