Initial commit: Leexi MCP server (read-only, 6 tools)

This commit is contained in:
2026-04-22 12:16:07 +02:00
commit d4687fd545
13 changed files with 3370 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "leexi-mcp-server",
"version": "1.0.0",
"description": "MCP server for Leexi API — read-only access to meeting notes, transcripts, and action items",
"type": "module",
"main": "dist/index.js",
"bin": {
"leexi-mcp-server": "dist/index.js"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"axios": "^1.7.9",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}