We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sandsiv/data_narrator_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
insight-digger-mcp•463 B
#!/usr/bin/env node
/**
* Insight Digger MCP Bridge CLI
* Entry point for NPX execution
*/
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Import and run the main bridge
const { default: main } = await import(join(__dirname, '..', 'src', 'index.js'));
// The main function is already executed in index.js, so we just need to import it