limitless-ai-mcp-server
Version:
MCP server for integrating Limitless AI Pendant recordings with AI assistants
85 lines (84 loc) • 2.28 kB
JSON
{
"name": "limitless-ai-mcp-server",
"version": "0.0.7",
"description": "MCP server for integrating Limitless AI Pendant recordings with AI assistants",
"author": "Eric Buess",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ericbuess/limitless-ai-mcp-server.git"
},
"bugs": {
"url": "https://github.com/ericbuess/limitless-ai-mcp-server/issues"
},
"homepage": "https://github.com/ericbuess/limitless-ai-mcp-server#readme",
"keywords": [
"mcp",
"model-context-protocol",
"limitless",
"ai",
"pendant",
"claude",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"limitless-ai-mcp-server": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist coverage tsconfig.tsbuildinfo",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run lint && npm run test",
"prepack": "npm run build",
"postinstall": "chmod +x dist/index.js 2>/dev/null || true"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.48"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md}": [
"prettier --write"
]
}
}