AI & LLM Integration
Use hookstream with Claude, Cursor, Windsurf, LLMs, and other AI coding assistants.
hookstream is built to be AI-friendly from the ground up. Every documentation page is available as clean markdown, the full docs are bundled into a single file for LLMs, the REST API is OpenAPI 3.1 with AI-friendly extensions, and the test sessions API doubles as a zero-auth Agent API that any model can drive.
Whether you're pasting docs into Claude, asking Cursor to write a webhook handler, or building an autonomous agent that spins up ephemeral endpoints and monitors deliveries — hookstream has a surface for it.
What hookstream provides for AI
llms.txtdiscovery at hookstream.io/llms.txt — summary with categorized doc links, following the llms.txt standard- Full docs bundle at hookstream.io/llms-full.txt and hookstream.io/docs.md — the entire documentation concatenated into a single ~180KB file
- Per-page markdown exports — append
.mdto any/docs/*URL to get clean markdown (e.g./docs/quickstart.md) - OpenAPI 3.1 spec at
https://hookstream.io/v1/openapi.jsonwithx-quickstart,x-docs-bundle, andx-llms-txtextensions - hookstream Claude Code skill at hookstream.io/hookstream.skills.md — teaches Claude Code how to bootstrap webhook projects, generate sources/destinations, and apply retry/filter patterns
- AI plugin manifest at
/.well-known/ai-plugin.jsonfor OpenAI-compatible tool discovery - Agent API at
https://hookstream.io/v1/agent/sessions— no-auth ephemeral webhook endpoints for agent workflows
Point your agent at https://hookstream.io/docs.md for a single-file version of the entire documentation bundle (~180KB). It's the fastest way to give a model complete, accurate context about hookstream in one paste.
Copy any page as markdown
Every documentation page has a Copy as Markdown button in the AI bar at the top — ready to paste into Claude, ChatGPT, or any other AI chat. You can also fetch the same content programmatically by appending .md to any URL:
texthttps://hookstream.io/docs/quickstart.md https://hookstream.io/docs/api/sources.md https://hookstream.io/docs/guides/retry-strategies.md
The markdown output includes all sections, API endpoint tables, code examples, and related page links — no HTML cruft.
Expose these docs to your IDE
HolyDocs ships an MCP server at {project}.holydocs.com/mcp that exposes all pages as searchable tools. Add it to Claude Code, Cursor, or any MCP-capable client and your assistant will query docs on demand instead of consuming context on every prompt.
For IDEs without MCP support, use the llms-full.txt or docs.md bundle as a custom context file — Cursor's Custom Instructions, Windsurf's rules, and Copilot CLI's system prompt all accept raw markdown.
Where to go next
- Skills & IDE Integration — install the hookstream skill in Claude Code, Cursor, Windsurf, and Copilot CLI
- Agent API Reference — zero-auth endpoints for ephemeral webhook endpoints
- Webhook Testing — the product surface the Agent API is built on