Skip to main content
Coding agents such as Claude Code and Cursor can build an Octen integration for you. This page gives an agent what it needs: what Octen offers, the docs in agent-friendly formats, how to connect to Octen, and how to use it in applications.

What Octen Offers

Octen is the search infrastructure for AI: a real-time web search foundation that lets LLMs, agents, and apps reason with the world’s latest information.

How to Read the Docs

Plain text pages

Add .md to the end of any docs URL to get the page as plain Markdown. For example, the Web Search API reference is available at https://docs.octen.ai/api-reference/search.md. This format beats scraping or copying the HTML pages:
  • Plain text contains fewer formatting tokens.
  • Content that isn’t rendered in the default view, such as content hidden in a tab, is included.
  • LLMs parse and understand Markdown hierarchy.

llms.txt

docs.octen.ai/llms.txt carries comprehensive API documentation designed for LLM consumption, following the llms.txt standard for making websites accessible to LLMs.

Connect to Octen

Connect to Octen with one command through Agent Skills, the MCP server, or the CLI.
You’ll need an Octen API key first. Create one from the API Platform.

Octen Skills

Agent skills for search, extract, and design references. One command, agent auto-detected:
Per-agent commands and API key setup are in Octen Skills.

Octen MCP Server

Search and extract tools for any MCP-compatible client. In Claude Code:
Configs for Claude Desktop, Cursor, VS Code, and other clients are in Octen MCP Server.

Octen CLI

The full Octen API in your terminal, plus one-command setup of the MCP server or Skills:
Commands and options are in Octen CLI.

Use in Applications

In application code, call the Octen API directly: the base URL is https://api.octen.ai, authenticated with the x-api-key header or a Bearer token.
Every endpoint, parameter, and response schema is in the API Reference. For Model Gateway, existing OpenAI and Anthropic SDK code works after swapping the base URL and key; see Model Gateway.