vellTRDocs
GuidesMCP Server & AI Tools

MCP Server & AI Tools

Beginner5 min

Connect the Kvell docs MCP server to Claude, Cursor, or ChatGPT and build with llms.txt.


This documentation site is also a live data source your AI coding assistant can query directly β€” over MCP (Model Context Protocol), or as plain markdown for indexing and RAG. Point your tool at one of the options below instead of pasting endpoint docs into a chat window.

Connect the MCP server

The docs site exposes a streamable-HTTP MCP server at:

Shell
https://docs.kvell.group/api/mcp

Claude Code

Shell
claude mcp add --transport http kvell-docs https://docs.kvell.group/api/mcp

Cursor / VS Code

Add to your MCP config JSON:

JSON
{
  "mcpServers": {
    "kvell-docs": {
      "url": "https://docs.kvell.group/api/mcp"
    }
  }
}

ChatGPT

Settings β†’ Connectors β†’ Add connector, then paste https://docs.kvell.group/api/mcp as the URL.

Available tools

ToolArgumentsReturns
search_docsqueryRanked matches across guides and API reference
list_endpointscategory?Endpoint list, optionally filtered to one category (payments, payouts, submerchants, …)
get_endpointidFull endpoint doc as markdown β€” method, path, headers, parameters, request/response examples
get_guideslug, locale?A full guide (like this one) as markdown

A typical session: ask your assistant something like "how do I refund a split payment on Kvell" β€” it calls search_docs, pulls the matching guide and endpoint docs via get_guide / get_endpoint, and answers from the current docs instead of its training data.

Plain markdown, for everything else

Not every tool speaks MCP. The same content is available as flat markdown:

PathContents
/llms.txtIndex of every guide and endpoint, as markdown links β€” good for a lightweight crawl
/llms-full.txtThe entire docs site in one file β€” good for a one-shot ingestion into a RAG pipeline
<any page>.mdAny page's raw markdown, by appending .md to its URL
Shell
curl https://docs.kvell.group/guides/marketplace-payments.md

Every page also has a Copy page button that copies the same raw markdown to your clipboard β€” useful for pasting a single guide into a chat without leaving the browser.

Which one to use

  • MCP β€” an interactive coding session where your assistant needs to look things up on demand.
  • /llms.txt / /llms-full.txt β€” indexing the docs into your own search or RAG system.
  • .md suffix or Copy page β€” grabbing one page, once.

Next steps

GuideWhat it covers
Getting StartedYour first signed request, if you're new here
API referenceEvery endpoint, browsable and machine-readable