We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aymericzip/intlayer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.ts•461 B
import { Ignitor } from '@adonisjs/core';
/**
* URL to the application root. AdonisJS needs it to resolve
* paths to different directories.
*/
const appRoot = new URL('./', import.meta.url);
/**
* The ignitor is the bootstrapper for the application. It
* handles the application lifecycle and booting the
* provider.
*/
new Ignitor(appRoot, {})
.httpServer()
.start()
.catch((error) => {
process.exitCode = 1;
console.error(error);
});