Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.lumx.io/llms.txt

Use this file to discover all available pages before exploring further.

The Lumx documentation provides a Model Context Protocol (MCP) server that lets AI tools search and retrieve content directly from these docs. This means you can ask questions about the Lumx API from tools like Claude, Cursor, or VS Code and get answers grounded in the official documentation.

Server URL

https://docs.lumx.io/mcp

Setup

Run the following command in your terminal:
claude mcp add --transport http lumx-docs https://docs.lumx.io/mcp

Available tools

The server exposes two tools to connected AI clients. Your client picks the right one based on the question, so you don’t need to call them directly.
  • search_lumx: semantic search across the docs. Returns matching pages with titles, snippets, and direct links. Best for “where do I find X?” questions.
  • query_docs_filesystem_lumx: shell-style access to the raw .mdx and OpenAPI files using rg, head, cat, and tree. Best for fetching full request schemas, listing endpoints, or grepping for specific patterns.