Documentation Index
Fetch the complete documentation index at: https://docs-docflow.textin.com/llms.txt
Use this file to discover all available pages before exploring further.
This guide demonstrates how to quickly integrate Docflow Document Skill into an AI Coding Agent.
If you haven’t used Docflow before, we recommend trying the Web UI first to experience how Docflow works.
01 Three Steps to Integrate
1.1 Install Coding Agent
Install an AI Coding tool that supports MCP and Skill. We recommend Codex.
npm install -g @openai/codex
1.2 Install TextIn Docflow Document MCP
Add the TextIn Docflow Document MCP service to your Coding Agent.
codex mcp add textin-docflow-docs --url http://docflow.textin.com/textin-docs/mcp
1.3 Install TextIn Docflow Document Skill
Install Docflow Document Skill using the following command:
mkdir -p "$HOME/.codex/skills/textin-docflow-document" && \
curl -sS -L "http://docflow.textin.com/textin-docs/skills/docflow/document" \
-o "$HOME/.codex/skills/textin-docflow-document/SKILL.md"
02 Verify Installation
After installation, enter the following in Codex to verify:
What are the parameters for the Docflow document parsing API?
If the Agent returns relevant documentation, the integration is successful.