AI & MCP
Connect AI agents to the Nordstern docs over MCP, llms.txt, and per-page markdown.
The Nordstern documentation is built to be consumed by AI agents, not just read by people. Point
your assistant at the MCP server below to search and read the docs from inside your editor, or feed
it the plain-markdown and llms.txt endpoints directly.
Docs MCP server
A single Model Context Protocol endpoint exposes the entire documentation set. Once connected, your assistant can list, search, and read any page without leaving your editor. No install and no API key required.
https://docs.nordstern.finance/mcpIt speaks Streamable HTTP, registers as nordstern-docs, and provides three tools:
list_docsEnumerate every page with its title, URL, and description.
search_docsKeyword search across page titles, descriptions, and content. Returns the most relevant pages with a short excerpt.
get_docFetch the full markdown of any page (the same text the Copy Markdown button uses).
This server serves the documentation only; it does not execute swaps. For the trading API,
see the API Reference.
Add it to your client
The endpoint is a standard remote MCP server, so any MCP-aware client can connect to it. The URL below reflects the site you're viewing.
claude mcp add --transport http nordstern-docs https://docs.nordstern.finance/mcpAdd to ~/.cursor/mcp.json (global) or .cursor/mcp.json (per project):
{ "mcpServers": { "nordstern-docs": { "url": "https://docs.nordstern.finance/mcp" } }}Add to .vscode/mcp.json:
{ "servers": { "nordstern-docs": { "type": "http", "url": "https://docs.nordstern.finance/mcp" } }}Add a custom connector under Settings → Connectors, or bridge to it from claude_desktop_config.json and restart the app:
{ "mcpServers": { "nordstern-docs": { "command": "npx", "args": ["-y", "mcp-remote", "https://docs.nordstern.finance/mcp"] } }}Add to ~/.codeium/windsurf/mcp_config.json (legacy Codeium path, unchanged after the rebrand):
{ "mcpServers": { "nordstern-docs": { "serverUrl": "https://docs.nordstern.finance/mcp" } }}Other AI-friendly endpoints
Every page is also available as raw markdown, so you can feed the docs to an AI tool without setting up MCP.
Use the docs as context
- llms.txt is a structured index of every page, for tools that support the
llms.txtconvention. - llms-full.txt concatenates the whole documentation into a single markdown document.
- Append
.mdto any page URL (for example /swap-route.md) to get its raw markdown. - The Copy Markdown and Open in ChatGPT / Claude / … buttons at the top of every page.