package.json•2.13 kB
{
"name": "lightdash-mcp-server",
"version": "0.0.12",
"description": "A MCP(Model Context Protocol) server that accesses to lightdash( https://www.lightdash.com/ )",
"main": "dist/index.js",
"type": "module",
"bin": {
"lightdash-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "node --import ./ts-node-loader.js src/index.ts",
"dev:http": "node --import ./ts-node-loader.js src/index.ts -port 8080",
"build": "tsc -p tsconfig.build.json && shx chmod +x dist/*.js",
"start": "node dist/index.js",
"test": "echo \"No tests yet\"",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"src/**/*.ts\" \"examples/**/*.ts\"",
"lint:prettier": "prettier --check \"src/**/*.ts\" \"examples/**/*.ts\"",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint \"src/**/*.ts\" \"examples/**/*.ts\" --fix",
"fix:prettier": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\"",
"examples": "node --import ./ts-node-loader.js examples/list_spaces.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syucream/lightdash-mcp-server.git"
},
"keywords": [
"lightdash",
"mcp",
"modelcontextprotocol"
],
"author": "syucream",
"license": "MIT",
"bugs": {
"url": "https://github.com/syucream/lightdash-mcp-server/issues"
},
"homepage": "https://github.com/syucream/lightdash-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.4",
"@types/express": "^5.0.0",
"@types/node": "^22.10.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"lightdash-client-typescript-fetch": "^0.0.4-202503270130",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"ts-node": "^10.9.2"
}
}