> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nordicfinancialnews.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AI tools & resources

> Use AI assistants and agents to explore the Nordic Financial News API and API docs.

This documentation site is optimized for AI tools to make it easier for you to get started. Send content to your favorite AI assistant, connect the docs to your IDE, or point agents at machine-readable files.

## How to use the contextual menu

Documentation pages have a contextual menu (top-right of the page content) that lets you interact with AI tools in one click:

* **Copy**: copy the page as Markdown, ready to paste into any AI chat
* **View**: view the raw Markdown source in a new tab
* **ChatGPT / Claude**: open a conversation with the page loaded as context
* **Cursor / VS Code**: install the docs MCP server directly into your IDE
* **MCP**: copy the docs MCP server URL for any MCP-compatible client

## Connect your AI agent to our API docs via MCP

This documentation site has an MCP server, powered by Mintlify. Connect it to your AI coding assistant so it can search the NFN docs without leaving your editor.

<Info>
  Your AI assistant or IDE must support [Model Context Protocol (MCP)](https://modelcontextprotocol.io) servers. Cursor, VS Code (Copilot), and Claude Code all have built-in support.
</Info>

<Tabs>
  <Tab title="Claude Code">
    ```bash theme={"dark"}
    claude mcp add nfn-docs https://docs.nordicfinancialnews.com/mcp
    ```
  </Tab>

  <Tab title="Codex">
    ```bash theme={"dark"}
    codex mcp add nfn-docs --url https://docs.nordicfinancialnews.com/mcp
    ```
  </Tab>

  <Tab title="Cursor">
    Use the contextual menu on any page and select **Connect to Cursor**, or manually add to `.cursor/mcp.json`:

    ```json theme={"dark"}
    {
      "mcpServers": {
        "nfn-docs": {
          "url": "https://docs.nordicfinancialnews.com/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    Use the contextual menu on any page and select **Connect to VS Code**, or add to your MCP settings:

    ```json theme={"dark"}
    {
      "mcpServers": {
        "nfn-docs": {
          "url": "https://docs.nordicfinancialnews.com/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

<Note>
  The docs MCP server connects your AI assistant to the **documentation** for search and context. To query **live API data** (articles, stories, companies), use the [NFN API MCP server](/model-context-protocol) instead.
</Note>

Once connected, you can ask your AI assistant questions like:

* "How do I filter articles by company?"
* "What pagination options does the NFN API support?"
* "Show me how to authenticate with the API"

Your assistant will search the NFN docs and use the results to answer accurately.

### How to use skill.md with AI agents

The `skill.md` file follows the [agentskills.io](https://agentskills.io) specification. AI coding tools can install it directly:

```bash theme={"dark"}
npx skills add https://docs.nordicfinancialnews.com
```

<Tip>
  Installing skill.md gives your agent context about Nordic Financial News API capabilities, required inputs, and constraints so the agent can make API calls on your behalf more reliably.
</Tip>

## Machine-readable files for AI integrations

If you're building AI integrations on top of the Nordic Financial News API, these machine-readable files are available at the root of the docs site:

| File            | URL                              | Purpose                                                                          |
| --------------- | -------------------------------- | -------------------------------------------------------------------------------- |
| `llms.txt`      | [/llms.txt](/llms.txt)           | Directory of all documentation pages with descriptions, like a sitemap for AI    |
| `llms-full.txt` | [/llms-full.txt](/llms-full.txt) | The entire documentation site combined into a single file                        |
| `skill.md`      | [/skill.md](/skill.md)           | Auto-generated capability summary describing what agents can do with the NFN API |

### How to export pages as Markdown

Every documentation page is available as clean Markdown by appending `.md` to the URL. For example:

```text theme={"dark"}
https://docs.nordicfinancialnews.com/guides/authentication.md
```

Markdown export is useful for feeding specific pages into AI tools or building custom integrations.

## Query live NFN data with your AI assistant

The Nordic Financial News API has its own MCP server for querying live data directly from your AI assistant. Search articles, stories, companies, and more. This is separate from the docs MCP server above.

<Card title="MCP server setup" icon="robot" color="#01B2FF" href="/model-context-protocol" horizontal>
  Connect AI assistants to query live Nordic Financial News data.
</Card>
