How to search the docs
Find answers in the Model Match docs with keyword search, Ask AI, or the documentation search MCP server.
There are three ways to search the Model Match documentation — all powered by Orama. Use keyword search to jump to a page, Ask AI to get a written answer, or the MCP server to give your AI coding assistant the same search from inside your editor.
All three search docs only — help articles, developer guides, and the API reference. To connect an AI assistant to your live data, use the Model Match API MCP server.
Keyword search
Press ⌘+K (macOS) or Ctrl+K (Windows/Linux), or click the search bar at the top of any docs page. Start typing and matching pages, headings, and passages appear instantly. Select a result to jump straight to it.
Best for when you know roughly what you're looking for and want to navigate to the right page fast.
Ask AI
Open search and choose Ask AI instead at the bottom of the dialog. Instead of a list of links, you get a written answer generated from the documentation, with the relevant context pulled in for you. Ask follow-up questions in the same session to keep digging.
Best for "how do I…" questions where you'd rather read an answer than skim several pages.
Documentation search MCP server
Connect the documentation search MCP server to your AI coding assistant so it can search the Model Match docs without leaving your editor — answering questions against the help docs, guides, and API reference in context.
Claude Code
claude mcp add --transport http modelMatchDocs https://mcp.orama.com/v1/c1_6fce830b-74b6-47f4-896f-f7ac45d60ff6?api-key=c1_rAGmjoxPXgzB9P9Cbonn2TzlRm6xZ2oX66IGikll48-jobRfxlxI8bM3ol6Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"modelMatchDocs": {
"type": "http",
"url": "https://mcp.orama.com/v1/c1_6fce830b-74b6-47f4-896f-f7ac45d60ff6?api-key=c1_rAGmjoxPXgzB9P9Cbonn2TzlRm6xZ2oX66IGikll48-jobRfxlxI8bM3ol6"
}
}
}OpenAI Codex
Add to your codex.json:
{
"mcpServers": {
"modelMatchDocs": {
"transport": "http",
"url": "https://mcp.orama.com/v1/c1_6fce830b-74b6-47f4-896f-f7ac45d60ff6?api-key=c1_rAGmjoxPXgzB9P9Cbonn2TzlRm6xZ2oX66IGikll48-jobRfxlxI8bM3ol6"
}
}
}Other MCP clients
Any MCP-compatible client can connect using the server URL:
https://mcp.orama.com/v1/c1_6fce830b-74b6-47f4-896f-f7ac45d60ff6?api-key=c1_rAGmjoxPXgzB9P9Cbonn2TzlRm6xZ2oX66IGikll48-jobRfxlxI8bM3ol6Related
- MCP Server (API) — Connect AI assistants to live Model Match data
- TypeScript SDK — Programmatic API access
Bulk Delivery
Export every record matching a list query to a single file — NDJSON, JSON, CSV, or Parquet. Bulk Delivery queues a background job that dumps the full result set to S3 and hands back a signed download URL. You're billed by the number of rows delivered.
Examples
Deployable starter apps built on the Model Match API — ship one to Vercel or Netlify in a click, or scaffold it locally.