Skip to main content
Glama

Last9 Observability MCP

Official
Apache 2.0
122
45
  • Apple
cli.js520 B
#!/usr/bin/env node const { spawn } = require('child_process'); const path = require('path'); // Get the path to the binary const binaryName = process.platform === 'win32' ? 'last9-mcp-server.exe' : 'last9-mcp-server'; const binaryPath = path.join(__dirname, '..', 'dist', binaryName); // Spawn the binary with all arguments passed through const proc = spawn(binaryPath, process.argv.slice(2), { stdio: 'inherit', env: process.env }); // Handle process exit proc.on('exit', (code) => { process.exit(code); });

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/last9/last9-mcp-server'

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