SuperDoc works seamlessly with AI tools. From Cursor to ChatGPT to your own LLMs.

Quick access for AI assistants

Working with Cursor, Claude, or ChatGPT? Give your assistant our docs:
// Quick reference
'https://docs.superdoc.dev/llms.txt'

// Complete documentation
'https://docs.superdoc.dev/llms-full.txt'  

// MCP server
'https://docs.superdoc.dev/mcp'
Drop these URLs into your AI’s context. Now it knows SuperDoc.

Programmatic control

Everything you can do in the UI, you can do via code:
  • Fine-grained document manipulation via commands
  • Headless mode - Run the Editor class in Node
  • Document modes - Toggle between editing and suggesting to auto-track changes
// Example: AI adds suggestions
const editor = new SuperEditor({ headless: true })
editor.commands.setDocumentMode('suggesting')
editor.commands.insertText('AI suggestion here')
See complete example →