limitless-mcp
Version:
MCP server for Limitless API - Connect your Pendant data to Claude and other LLMs
53 lines (52 loc) • 1.32 kB
JSON
{
"name": "limitless-mcp",
"version": "0.5.3",
"description": "MCP server for Limitless API - Connect your Pendant data to Claude and other LLMs",
"type": "module",
"bin": {
"limitless-mcp": "bin/limitless-mcp.js"
},
"main": "./dist/main.js",
"files": [
"dist",
"bin",
"scripts"
],
"scripts": {
"build": "tsc --noEmitOnError false && node scripts/fix-imports.js",
"build:force": "tsc || true",
"postbuild:force": "node scripts/fix-imports.js",
"prepare": "npm run build:force",
"start": "node dist/main.js",
"dev": "tsx src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakerains/limitless-mcp.git"
},
"keywords": [
"limitless",
"mcp",
"pendant",
"claude",
"ai",
"lifelogs",
"model-context-protocol"
],
"author": "Jake Rains",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.1",
"node-cache": "^5.1.2",
"undici": "^6.6.2",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^20.11.25",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"private": false
}