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
DOC-3471, DOC-3476: Output Markdown endpoints from LLM file generator and add Context7 MCP instructions
Add toMarkdownEndpoints() to generate-llm-files.js so generated
llms.txt and llms-full.txt URLs point to index.md Markdown endpoints
instead of trailing-slash HTML pages.
Add Context7 MCP setup section to the llms.txt template in the
generator so it persists across regenerations.
Regenerated both files from the production sitemap to validate.
- [Migration from 7.x](${BASE_URL}/migration-from-7x/): Migrate from TinyMCE 7
1208
1220
1221
+
## AI-Assisted Development with MCP
1222
+
1223
+
For up-to-date TinyMCE documentation directly in AI coding tools, set up the Context7 MCP server. TinyMCE docs are indexed at [context7.com/tinymce/tinymce-docs](https://context7.com/tinymce/tinymce-docs).
1224
+
1225
+
### Cursor
1226
+
1227
+
Add to \`.cursor/mcp.json\`:
1228
+
1229
+
\`\`\`json
1230
+
{
1231
+
"mcpServers": {
1232
+
"context7": {
1233
+
"command": "npx",
1234
+
"args": ["-y", "@upstash/context7-mcp"]
1235
+
}
1236
+
}
1237
+
}
1238
+
\`\`\`
1239
+
1240
+
### Claude Code
1241
+
1242
+
\`\`\`bash
1243
+
claude mcp add context7 -- npx -y @upstash/context7-mcp
1244
+
\`\`\`
1245
+
1246
+
Add "use context7" to any prompt for live TinyMCE documentation lookups.
1247
+
1209
1248
## Complete Documentation
1210
1249
1211
1250
For a complete list of all ${urls.length} documentation pages, see [llms-full.txt](${DOCS_ROOT_URL}/llms-full.txt).
@@ -1225,11 +1264,11 @@ async function main() {
1225
1264
consturls=parseSitemap(sitemapContent);
1226
1265
console.log(`Found ${urls.length} unique URLs in sitemap`);
0 commit comments