@brave/brave-search-mcp-server
Version:
Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.
21 lines (20 loc) • 550 B
JavaScript
import { getOptions } from './config.js';
import { stdioServer, httpServer } from './protocols/index.js';
async function main() {
const options = getOptions();
if (!options) {
console.error('Invalid configuration');
process.exit(1);
}
// default to stdio server unless http is explicitly requested
if (options.transport === 'http') {
httpServer.start();
return;
}
await stdioServer.start();
}
main().catch((error) => {
console.error(error);
process.exit(1);
});