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 { paginationOptsValidator } from "convex/server";
import { queryPrivateSystem } from "../secretSystemTables";
import { performOp } from "udf-syscall-ffi";
export default queryPrivateSystem({
args: {
paginationOpts: paginationOptsValidator,
},
handler: async () => {
const tables: Record<number, string> = performOp("getTableMapping");
// We don't need to paginate but keep the PaginationResult return type for backwards
// compatibility.
return {
page: Object.values(tables)
.map((name) => ({ name }))
.filter(({ name }) => !name.startsWith("_")),
isDone: true,
continueCursor: "end",
};
},
});