Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Lightdash MCP Server
Claim
by
syucream
npm
GitHub
Search
Research & Data
Monitoring
TypeScript
MIT License
106
7
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
examples
.github
src
Dockerfile
.dockerignore
.env.sample
eslint.config.js
.eslintrc.json
.gitignore
LICENSE
.node-version
package.json
package-lock.json
.prettierrc
README.md
smithery.yaml
tsconfig.build.json
tsconfig.dev.json
tsconfig.json
ts-node-loader.js
{ "name": "lightdash-mcp-server", "version": "0.0.7", "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", "build": "tsc -p tsconfig.build.json", "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.0.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.3-202501050320", "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", "ts-node": "^10.9.2" } }