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
/* eslint-disable @typescript-eslint/no-unused-vars */
import { query, mutation } from "./_generated/server";
import { doesntWork } from "./helpers.js";
interface _NotActuallyUsed {
x: number;
}
function throwsTheError() {
const _x = 1;
throw new Error("Oh bother!");
}
function callsSomethingElse() {
const _z = 3;
throwsTheError();
const _moreStuff = "line numbers";
const _areGreat = "true that";
}
export const throwsError = query(async () => {
const _soMuch = "unnecessaryCode";
callsSomethingElse();
const _a = "inThisFile";
});
export const throwsErrorInDep = query(async () => {
const _thisIs = "alsoUnused";
doesntWork();
});