Skip to main content

Connect the docs to your AI assistant

These docs are available over the Model Context Protocol (MCP), so your coding assistant can search them directly and answer with links back to the exact section — instead of guessing from stale training data.

Server URL

https://T3F23WL577.algolia.net/mcp/1/pBfsB0jvSvOHvUzkKTVcLA/mcp

No API key, no sign-up, no authentication. The connection is read-only: it searches our public documentation and nothing else.

Add it to your client

claude mcp add --transport http dgw-docs \
https://T3F23WL577.algolia.net/mcp/1/pBfsB0jvSvOHvUzkKTVcLA/mcp

Verify with claude mcp list.

What your assistant gets

ToolWhat it does
algolia_search_index_docsSearches every published documentation page. Accepts up to five query variations in one call, each with its own facet filters.
algolia_search_for_facet_valuesLists available values for a facet (type, lang, version). Rarely needed directly.

Every hit carries a url and an anchor, so the assistant can link to the exact section rather than the page.

:::tip Get the code samples too Code blocks are not part of the search index — a hit tells your assistant where the answer lives, not what the snippet says. Deeper section records (heading-only results) may come back with content: null for the same reason.

Every page is also published as raw Markdown: append .md to any docs URL, or point your assistant at /llms-full.txt. Most agents will fetch these on their own once they have the URL. :::

Prompts to start with

Using the Delivery Gateway docs, walk me through the minimal checkout
integration — what goes on the backend versus the frontend?
Search the Delivery Gateway docs for how to create a webhook and verify its
signature, then show me the createWebhook mutation inputs.

Plain-text alternative

If your tooling has no MCP support, the same content is available as static files:

FileContents
/llms.txtIndex of every documentation page
/llms-full.txtComplete documentation in one file
/llms-integration.txtGetting started and integration guides only
/llms-merchant-api.txtMerchant API reference only

Any page also returns Markdown if you append .md to its URL.

Limits

  • Read-only, documentation only. The connector cannot reach your account, orders or shipments. For that, use the Merchant API.
  • Public content only. Nothing behind authentication is exposed.
  • Search queries reach Algolia. Tool calls send your query, plus the original prompt that triggered them, to Algolia for search analytics.
  • Not a support channel. For account-specific questions, contact the Help Center.
  • Answers are generated by your assistant. Verify against the linked page before shipping to production.