We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/djannot/puppeteer-vision-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•259 B
#!/usr/bin/env node
import dotenv from 'dotenv';
// Load environment variables before importing other modules
dotenv.config();
// Import the main server module
import { createMcpServer } from './server/mcp-server.js';
// Start the server
createMcpServer();