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 { ConvexClient } from "convex/browser";
import { anyApi } from "convex/server";
const CONVEX_URL = "http://happy-otter-123";
const client = new ConvexClient(CONVEX_URL);
client.onUpdate(anyApi.messages.list, {}, (messages) =>
console.log(messages.map((msg) => msg.body)),
);
setInterval(
() =>
client.mutation(anyApi.messages.send, {
body: `hello at ${new Date()}`,
author: "me",
}),
5000,
);