Skip to main content
Glama

Bruno MCP Server

by macarthy
index.ts•1.19 kB
#!/usr/bin/env node /** * Bruno MCP Server Entry Point * Main entry point for the Bruno MCP server application */ import { createBrunoMcpServer } from './server.js'; async function main() { try { // Create and start the Bruno MCP server const server = createBrunoMcpServer(); await server.start(); // Keep the process running process.on('SIGINT', () => { console.error('\nBruno MCP Server shutting down gracefully...'); process.exit(0); }); process.on('SIGTERM', () => { console.error('\nBruno MCP Server shutting down gracefully...'); process.exit(0); }); } catch (error) { console.error('Failed to start Bruno MCP Server:', error); process.exit(1); } } // Start the server if this file is run directly if (import.meta.url === `file://${process.argv[1]}`) { main().catch((error) => { console.error('Unhandled error:', error); process.exit(1); }); } export { createBrunoMcpServer } from './server.js'; export * from './bruno/types.js'; export * from './bruno/generator.js'; export * from './bruno/collection.js'; export * from './bruno/environment.js'; export * from './bruno/request.js';

Latest Blog Posts

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/macarthy/bruno-mcp'

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