MCP server
Connect Claude, Cursor, and other tools to a live, searchable index of the docs.
llms.txt
Drop-in context files that summarize or inline the entire docs site.
Markdown export
Get any page as clean Markdown by appending
.md to its URL.skill.md
Machine-readable capability file for agents that act on Meld’s APIs.
MCP server
The Meld docs are exposed as a hosted Model Context Protocol server. Once connected, your AI tool can search the docs and read full pages on demand instead of guessing. Server URLsearch_meld— semantic search across every page; returns titles, snippets, and links.query_docs_filesystem_meld— shell-style read access (ls,tree,cat,head,rg) over the docs as a virtual filesystem, including the OpenAPI specs.
Add it to your tool
- Claude Code
- Claude Desktop
- Cursor
- VS Code
- ChatGPT
Run from your project:Then in a session, ask: “Use the meld-docs MCP to find the White-Label API quickstart and summarize the request payload.”
llms.txt
The docs are also published as flat text files designed for direct LLM consumption — useful when you want to drop the whole site into a context window, a RAG pipeline, or a fine-tuning corpus.| File | Use it when |
|---|---|
https://docs.meld.io/llms.txt | You want a structured index of every page with descriptions. |
https://docs.meld.io/llms-full.txt | You want the entire docs site inlined as one Markdown file. |
Markdown export
Any page ondocs.meld.io can be fetched as raw Markdown — no HTML, no nav chrome — by appending .md to its URL.
Examples
- Send
Accept: text/markdownon any docs request to get the Markdown variant. - Press Cmd+C (Ctrl+C on Windows) on any page to copy it as Markdown.
- Use the Copy as Markdown / View as Markdown options in the page’s contextual menu.
skill.md
For agents that act on Meld (not just read about it), the docs publish an agentskills.io–compatible capability file:Recommended setup for crypto integrations
Connect the MCP server
Add
https://docs.meld.io/mcp to your editor or chat tool. This is the single best upgrade — your assistant can now look up exact request shapes, status codes, and webhook payloads on demand.Pin the right starting points
Bookmark these Markdown URLs and feed them to your agent at the start of a session:
https://docs.meld.io/docs/stablecoins/crypto-overview_/index.md— product overview and which integration to pickhttps://docs.meld.io/docs/stablecoins/crypto-overview_/quickstart.md— first API callhttps://docs.meld.io/docs/stablecoins/for-all-products/webhook-events.md— webhook event catalog
Use llms-full.txt for one-shot tasks
When you want a clean-slate model (no MCP) to do something self-contained — a one-off script, a code review, a migration — paste
llms-full.txt into context with caching enabled.