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 { logFailure, logMessage } from "../../../bundler/log.js";
export class LocalDeploymentError extends Error {}
export function printLocalDeploymentOnError() {
// Note: Not printing the error message here since it should already be printed by
// ctx.crash.
logFailure(`Hit an error while running local deployment.`);
logMessage(
"Your error has been reported to our team, and we'll be working on it. " +
"To opt out, run `npx convex disable-local-deployments`. " +
"Then re-run your original command.",
);
}