We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/get-convex/convex-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import fs from "fs";
import path from "path";
import react from "@vitejs/plugin-react";
export default {
plugins: [
react(),
{
buildEnd() {
const deps = [];
for (const id of this.getModuleIds()) {
const m = this.getModuleInfo(id);
if (m !== null && !m.isExternal) {
for (const target of m.importedIds) {
deps.push({ source: m.id, target });
}
}
}
fs.writeFileSync(
path.join(__dirname, "parcel-bundle-buddy.json"),
JSON.stringify(deps, null, 2),
);
},
},
],
build: {
sourcemap: true,
},
};