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

# Overview

> Everything you need to onboard your AI agent to Nekt.

If you're developing with AI, Nekt offers several resources to help your agents work with the platform — from querying data to automating pipelines and managing resources.

* [MCP Server](#mcp-server)
* [Docs for Agents](#docs-for-agents)
* [Platform API](#platform-api)
* [Data API](#data-api)
* [AI Integrations](#ai-integrations)

## MCP Server

[MCP (Model Context Protocol)](https://modelcontextprotocol.io/) is an open protocol that standardizes how applications provide context to LLMs. Nekt's MCP Server gives AI agents a structured way to discover data, run queries, read files, and learn about the platform — all through a single integration point.

The server supports **OAuth 2.1** for desktop apps like Claude Desktop and Cursor, and **bearer tokens** for CLI tools and automation platforms.

To connect via bearer token, add the server to your MCP client configuration:

```json theme={null}
{
  "mcpServers": {
    "Nekt": {
      "type": "http",
      "url": "<MCP_ENDPOINT>",
      "headers": {
        "Authorization": "Bearer <MCP_TOKEN>"
      }
    }
  }
}
```

Replace `<MCP_ENDPOINT>` with the endpoint from the MCP Server page in Nekt, and `<MCP_TOKEN>` with the token you created.

<CardGroup cols={3}>
  <Card title="Setup" icon="gear" href="/mcp-server/setup">
    Enable the MCP Server and create tokens.
  </Card>

  <Card title="Authentication" icon="key" href="/mcp-server/authentication">
    OAuth 2.1 and bearer token details.
  </Card>

  <Card title="Tools" icon="wrench" href="/mcp-server/tools">
    Nine tools available to AI agents.
  </Card>
</CardGroup>

## Docs for Agents

Give your agent up-to-date Nekt documentation for better context when working with the platform.

1. **Markdown docs**

   Every doc includes a markdown version (append md to any page):

   ```
   https://docs.nekt.com/build-with-ai.md
   ```

2. **Full docs file**

   Give your agent all of Nekt's documentation in a single file:

   ```
   https://docs.nekt.com/llms-full.txt
   ```

## Platform API

The Platform API gives agents programmatic control over Nekt resources via REST. Use it to create and trigger sources, manage pipelines, track runs, and operate on the catalog — anything you can do in the UI, agents can automate through the API.

Authenticate with an API key in the `x-api-key` header:

```bash theme={null}
curl --request GET \
  --url https://api.nekt.ai/api/v1/sources/ \
  --header "x-api-key: <API_KEY>"
```

Create an API key in [Workspace Settings](https://app.nekt.ai/settings/api-keys).

<Card title="Platform API Reference" icon="square-terminal" href="/platform-api/introduction">
  Full API reference for managing Nekt resources.
</Card>

## Data API

The Data API lets agents query your data directly over HTTP using SQL. Submit a query, and download the results as Parquet or CSV.

<Card title="Data API Reference" icon="database" href="/data-api/introduction">
  Query your data using SQL through the Data API.
</Card>

## AI Integrations

Step-by-step guides for connecting specific AI tools to Nekt.

<CardGroup cols={3}>
  <Card title="Claude" icon="message-bot" href="/integrations/claude">
    Connect Claude to your data in Nekt and activate it with flexibility and ease.
  </Card>

  <Card title="Lovable" icon="heart" href="/integrations/lovable">
    Connect Lovable to your data in Nekt.
  </Card>

  <Card title="ChatGPT" icon="comment" href="/integrations/chatgpt">
    Connect ChatGPT to your data in Nekt using the MCP Server with OAuth authentication.
  </Card>

  <Card title="OpenClaw" icon="robot" href="/integrations/openclaw">
    Connect OpenClaw to your data in Nekt using the MCP Server.
  </Card>

  <Card title="Codex" icon="code" href="/integrations/codex">
    Connect OpenAI Codex to your data in Nekt using the MCP Server with bearer token authentication.
  </Card>

  <Card title="Hermes" icon="hexagon-nodes" href="/integrations/hermes">
    Connect Hermes Agent to your data in Nekt, running on any LLM such as DeepSeek.
  </Card>
</CardGroup>
