├── .env.example ├── .github ├── release.yml └── workflows │ ├── release.yml │ └── tagpr.yml ├── .gitignore ├── .tagpr ├── CHANGELOG.md ├── README.md ├── package.json ├── src ├── cli.ts ├── index.ts ├── logger.ts └── redashClient.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/.env.example -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tagpr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/.github/workflows/tagpr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.tagpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/.tagpr -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/redashClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/src/redashClient.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suthio/redash-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------