Skip to main content
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 Claude Code.
npm install -g @anthropic-ai/claude-code

1.2 Install TextIn Docflow Document MCP

Add the TextIn Docflow Document MCP service to your Coding Agent.
claude mcp add textin-docflow-docs --transport sse 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/.claude/skills/textin-docflow-document" && \
curl -sS -L "http://docflow.textin.com/textin-docs/skills/docflow/document" \
  -o "$HOME/.claude/skills/textin-docflow-document/SKILL.md"

02 Verify Installation

After installation, enter the following in Claude Code to verify:
What are the parameters for the Docflow document parsing API?
If the Agent returns relevant documentation, the integration is successful.