Skip to main content
Glama

Lightdash MCP Server

by syucream
list_spaces.ts2.04 kB
import { Client } from '@modelcontextprotocol/sdk/client/index.js'; import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js'; import { config } from 'dotenv'; import { fileURLToPath } from 'node:url'; import { dirname, resolve } from 'node:path'; // Get the current file's directory const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); // Load environment variables from .env file config(); // Get and validate required environment variables const apiKey = process.env.EXAMPLES_CLIENT_LIGHTDASH_API_KEY; const apiUrl = process.env.EXAMPLES_CLIENT_LIGHTDASH_API_URL ?? 'https://app.lightdash.cloud'; if (!apiKey) { throw new Error( 'EXAMPLES_CLIENT_LIGHTDASH_API_KEY environment variable is required' ); } // After validation, we can safely assert these are strings const env = { LIGHTDASH_API_KEY: apiKey, LIGHTDASH_API_URL: apiUrl, } as const satisfies Record<string, string>; async function main() { // Initialize MCP client const client = new Client( { name: 'lightdash-mcp-example-client', version: '1.0.0', }, { capabilities: {}, } ); // Create transport to connect to the server const transport = new StdioClientTransport({ command: process.execPath, args: [ '--import', resolve(__dirname, '../ts-node-loader.js'), resolve(__dirname, '../src/index.ts'), ], env, }); try { // Connect to the server await client.connect(transport); // List available tools await client.listTools(); // Call list_spaces with a project UUID const projectUuid = process.env.EXAMPLES_CLIENT_LIGHTDASH_PROJECT_UUID; if (!projectUuid) { throw new Error( 'EXAMPLES_CLIENT_LIGHTDASH_PROJECT_UUID environment variable is required' ); } await client.callTool({ name: 'lightdash_list_spaces', arguments: { projectUuid, }, }); } finally { // Close the connection await transport.close(); } } main();

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/syucream/lightdash-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server