/**
* mcptix Browser Utilities
* Handles opening the browser to the mcptix UI
*/
const open = require('open');
/**
* Open the browser to the specified URL
* @param {string} url The URL to open
*/
async function openBrowser(url) {
try {
console.log(`Opening browser to ${url}`);
await open(url);
} catch (error) {
console.error('Error opening browser:', error.message);
console.log(`Please open your browser manually and navigate to ${url}`);
}
}
module.exports = {
openBrowser,
};
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/ownlytics/mcptix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server