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
README.md•411 B
# Search Example App
This example demonstrates how to use
[Convex full text search](https://docs.convex.dev/text-search) to add search to
an app.
In `schema.ts`, we define a search index on the `"messages"` table.
`searchMessages.js` uses this index to find all messages that match a search
query. This is all wired up to the front end in `App.jsx`.
## Running the App
Run:
```
npm install
npm run dev
```