MCP Server & AI Tools
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:
https://docs.kvell.group/api/mcpClaude Code
claude mcp add --transport http kvell-docs https://docs.kvell.group/api/mcpCursor / VS Code
Add to your MCP config 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
| Tool | Arguments | Returns |
|---|---|---|
search_docs | query | Ranked matches across guides and API reference |
list_endpoints | category? | Endpoint list, optionally filtered to one category (payments, payouts, submerchants, β¦) |
get_endpoint | id | Full endpoint doc as markdown β method, path, headers, parameters, request/response examples |
get_guide | slug, 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:
| Path | Contents |
|---|---|
/llms.txt | Index of every guide and endpoint, as markdown links β good for a lightweight crawl |
/llms-full.txt | The entire docs site in one file β good for a one-shot ingestion into a RAG pipeline |
<any page>.md | Any page's raw markdown, by appending .md to its URL |
curl https://docs.kvell.group/guides/marketplace-payments.mdEvery 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..mdsuffix or Copy page β grabbing one page, once.
Next steps
| Guide | What it covers |
|---|---|
| Getting Started | Your first signed request, if you're new here |
| API reference | Every endpoint, browsable and machine-readable |