DataQueueDataQueue

mcp

Start the DataQueue MCP server for AI-powered documentation access.

Starts the DataQueue MCP (Model Context Protocol) server over stdio. This server gives AI coding assistants live access to the full DataQueue documentation.

npx dataqueue-cli mcp

You typically don't run this command directly. Use install-mcp to configure your AI client, which will start the server automatically.

Tools Exposed

The MCP server exposes three tools that AI assistants can call:

ToolDescription
list-doc-pagesLists all available documentation pages with titles and descriptions
get-doc-pageFetches a specific page by slug (e.g., "usage/add-job" or "api/job-queue")
search-docsFull-text search across all documentation pages with term matching

Resources

The server also exposes a resource:

URIDescription
dataqueue://llms.txtMachine-readable DataQueue overview for LLM consumption

How It Works

The server loads a bundled docs-content.json file containing all DataQueue documentation pages. Search uses simple term matching across page titles, descriptions, and content, returning the top 5 results with relevant excerpts.

Communication happens over stdio using the Model Context Protocol, so it works with any MCP-compatible client.