We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brightseth/vibe'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•391 B
/**
* Store — Chooses local or API based on environment
*
* Default: uses remote API (production behavior)
* Set VIBE_LOCAL=true to use local JSONL files
*/
const useLocal = process.env.VIBE_LOCAL === 'true';
if (useLocal) {
module.exports = require('./local');
module.exports.storage = 'local';
} else {
module.exports = require('./api');
module.exports.storage = 'api';
}