You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document llms.txt and per-page Markdown access (#5064)
* docs: document llms.txt and per-page Markdown access
The with-ai page covered Skills and the MCP server but never mentioned the llms.txt/llms-full.txt index or the
per-page Markdown and Open in ChatGPT/Claude buttons, even though both already ship in production. Also fixes a
doubled space in the MCP server heading.
* Update section title for Temporal knowledge base
Updated section title to use lowercase for consistency and improved clarity.
Connect Temporal expertise directly to your AI assistant for accurate, up-to-date answers about Temporal. The
118
118
Temporal knowledge base MCP server gives AI tools real-time access to best practices compiled from our documentation, educational materials, community forum responses, and slack channels, so responses draw from current expertise
@@ -163,3 +163,17 @@ Not all MCP clients support this protocol.
163
163
If your client supports MCP OAuth, it will open a browser window to verify with Google or GitHub on first connection.
164
164
If your client does not support MCP OAuth, you may need to use a stdio proxy that handles the OAuth flow and passes credentials to the remote server.
165
165
Check your client's documentation for details on connecting to OAuth-protected MCP servers.
166
+
167
+
## Markdown pages and llms.txt
168
+
169
+
Every documentation page is also available as Markdown, so AI tools that fetch a URL can read the docs without an MCP
170
+
connection or sign-in.
171
+
172
+
- Append `.md` to any page's URL to fetch its Markdown version — for example, `https://docs.temporal.io/workflows.md`.
173
+
- Each page has **Copy for LLM**, **View Markdown**, **Open in ChatGPT**, and **Open in Claude** buttons above its
174
+
content. **Copy for LLM** copies the page's Markdown, with its source URL, to your clipboard. **Open in ChatGPT** and
175
+
**Open in Claude** start a new chat with a prompt telling the model to read the page.
176
+
-[`llms.txt`](https://llmstxt.org) is a standard for indexing a site for LLMs. Temporal's index is at
177
+
`https://docs.temporal.io/llms.txt`, and the full documentation concatenated into one file is at
178
+
`https://docs.temporal.io/llms-full.txt`. The full file is large enough to exceed most model context windows, so
179
+
prefer the index and individual pages' `.md` versions unless you need to bulk-ingest everything at once.
0 commit comments