Getting Started

AI Integration

Use Office Open with AI agents via MCP, Skills, and LLMs.txt

Office Open documentation supports multiple AI integration methods. AI agents can search docs, install skills, or consume raw markdown references.

Documentation Assistant

The documentation site includes a built-in AI assistant powered by Docus. It searches documentation content through natural language queries.

  • Floating input — Ask questions from any documentation page (keyboard shortcut available)
  • Explain with AI — Get explanations of the current page's content
  • Cited sources — Responses include navigable links to relevant documentation pages
  • Code examples — Generates copyable code snippets

MCP Server

The documentation exposes an MCP (Model Context Protocol) server at /mcp that AI agents can connect to for searching documentation.

Use in Claude Code

Add the Office Open documentation MCP server to your Claude Code configuration:

{
    "mcpServers": {
        "office-open": {
            "url": "https://www.office-open.com/mcp"
        }
    }
}

Use in Cursor / Other MCP Clients

Configure the remote MCP server URL https://www.office-open.com/mcp in your client's MCP settings. The server provides a search tool for querying documentation content.

Agent Skills

Skills follow the Cloudflare Agent Skills Discovery RFC, providing AI agents with specialized knowledge about Office Open APIs.

Install Skills

npx skills add https://www.office-open.com

This command discovers and installs the Office Open skill, giving your AI agent access to:

  • Quick start guides for DOCX and PPTX
  • Complete API references for all packages
  • Measurement unit conversion tables
  • Common code patterns

What's Included

The skill is organized with progressive disclosure:

ResourceContent
SKILL.mdOverview, quick start, common patterns
references/docx-api.mdComplete DOCX API (text, tables, images, math, styles)
references/pptx-api.mdComplete PPTX API (shapes, effects, animations, fills)
references/units.mdMeasurement units and converter functions

Manual Installation

If your agent doesn't support npx skills add, you can manually reference the skill files:

https://www.office-open.com/.well-known/skills/office-open/SKILL.md

LLMs.txt

The documentation site generates llms.txt and llms-full.txt files for LLM consumption:

  • /llms.txt — Concise index of all documentation pages
  • /llms-full.txt — Full documentation content in markdown

These files follow the llms.txt convention and are designed for AI agents that need to ingest documentation content.

Use in CLAUDE.md

Add to your project's CLAUDE.md:

For Office Open XML APIs, reference:

- https://www.office-open.com/llms.txt

Summary

MethodBest For
Documentation AssistantInteractive Q&A on the docs site
MCP ServerReal-time doc search in AI coding tools
SkillsPersistent API knowledge for AI agents
LLMs.txtBulk documentation ingestion for context windows
Copyright © 2026