Skip to main content
Glama
sync-assets.js637 B
const fs = require("fs"); const path = require("path"); const repoRoot = path.resolve(__dirname, "..", ".."); const docsRoot = path.resolve(__dirname, ".."); const filesToCopy = [ { source: path.join(repoRoot, "CHANGELOG.md"), target: path.join(docsRoot, "CHANGELOG.md") }, { source: path.join(repoRoot, "docker-compose.yml"), target: path.join(docsRoot, "docker-compose.yml") }, ]; for (const { source, target } of filesToCopy) { if (!fs.existsSync(source)) { console.warn(`Source file not found, skipping: ${source}`); continue; } fs.copyFileSync(source, target); console.log(`Synced ${source} -> ${target}`); }

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/aakashH242/mcp-playwright'

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