Docs for Agents
For the complete documentation index, see llms.txt. For a full content snapshot, see llms-full.txt. Append.mdto anykestra.io/docs/*URL for plain Markdown.
A reference index of every machine-readable endpoint, format, and tool for connecting AI agents and LLMs to Kestra.
MCP server
The Kestra MCP server gives AI tools live access to plugin documentation, blueprints, and product docs. Configure it in Claude Code, Cursor, or any MCP-compatible agent.
Auto-discovery endpoint:
https://kestra.io/.well-known/mcp.jsonServer URL:
https://api.kestra.io/v1/mcpNo authentication required for the public server. See the MCP server setup guide for configuration instructions for each tool.
Agent Skills
Agent Skills are structured knowledge files that teach AI coding agents how to generate valid Kestra flows, harden them for production, and operate Kestra environments via the CLI.
Install all Kestra skills with:
npx skills add kestra-io/agent-skillsAvailable skills: kestra-flow, kestra-flow-hardening, kestra-ops, migrate-airflow-kestra.
See the Agent Skills page for full descriptions and example prompts.
Plain Markdown docs
Every Kestra documentation page is available as plain Markdown. Three ways to retrieve it:
-
Copy Page menu — every docs page has a toolbar with Copy as Markdown, View as Markdown, Open in ChatGPT, and Open in Claude.
-
Append
.mdto anykestra.io/docs/*URL:https://kestra.io/docs/quickstart.md -
Set the
Acceptheader on the request:curl -H "Accept: text/markdown" https://kestra.io/docs/quickstart
This works for all docs pages, including versioned docs such as kestra.io/docs/1.3/quickstart.md.
llms.txt endpoints
| Endpoint | Description |
|---|---|
/llms.txt | Curated index with key concepts, resource links, and structured summaries |
/llms-full.txt | Full content snapshot of all docs pages |
The llms.txt file follows the llms.txt standard and includes the MCP server discovery URL.
Plugin and flow schemas
| Resource | URL |
|---|---|
| Flow schema | https://api.kestra.io/v1/plugins/schemas/flow |
| Plugin task schema | https://api.kestra.io/v1/plugins/schemas/{type} |
| Plugin list | https://api.kestra.io/v1/plugins |
| Plugin versions | https://api.kestra.io/v1/plugins/{group}/{artifact}/versions |
The flow schema is the same schema used by Kestra’s AI Copilot. Pass it to your agent to validate flow YAML before deploying.
OpenAPI specs
Kestra’s REST API is described by an OpenAPI specification. Use it to generate clients or give an agent a complete picture of available endpoints.
| Edition | URL |
|---|---|
| Open Source | https://kestra.io/kestra.yml |
| Enterprise | https://kestra.io/kestra-ee.yml |
The interactive API reference at /docs/api-reference is rendered from these same spec files.
Was this page helpful?