Skip to main content
Glama

Convex MCP server

Official
by get-convex
app.test.js1.09 kB
import { element, device, by, waitFor } from "detox"; describe("App", () => { beforeAll(async () => { await device.launchApp(); }); beforeEach(async () => { await device.reloadReactNative(); }); it("should load", async () => { // The name field should always be present, so this tests that we can // actually load our app bundle. await expect(element(by.id("NameField"))).toBeVisible(); }); it("should show newly created message", async () => { // This requires a server to be running and tests that creating a message // eventually causes it to appear in the message list. await element(by.id("MessageInput")).typeText("Testy test 123"); await element(by.id("MessageInput")).tapReturnKey(); await expect(element(by.id("MessagesList"))).toBeVisible(); const attr = await element(by.id("NameField")).getAttributes(); const name = attr.text; await waitFor( element( by.text(`${name}: Testy test 123`).withAncestor(by.id("MessagesList")) ) ) .toBeVisible() .withTimeout(10000); }); });

MCP directory API

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