We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/n24q02m/better-notion-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Better Notion MCP Server Starter
* Simplified to use composite tools only
*/
import { initServer } from '../src/init-server.js'
async function startServer() {
try {
await initServer()
// Keep process running
process.on('SIGINT', () => {
console.error('\nShutting down Better Notion MCP Server')
process.exit(0)
})
} catch (error) {
console.error('Failed to start server:', error)
process.exit(1)
}
}
startServer()