What is TextIn?
TextIn is a server that supports any MCP protocol client, is a tool for extracting text and performing OCR on documents, including document text recognition, ID recognition, and invoice recognition. It also supports converting documents into Markdown format.
How to use TextIn MCP?
To use TextIn MCP, configure it in a compatible client like Cursor by copying your APP ID and APP SECRET and setting up the server command as specified in the documentation.
Use cases of TextIn MCP?
- Text recognition from images, Word documents, and PDF files.
- Convert images, PDFs, and Word documents to Markdown.
- Automatically and intelligently extract key information from documents.
FAQ from TextIn MCP?
-
How to register a TextIn account?
Click here to register for a free account.
-
Is there a limit to the number of requests I can make?
The usage limits depend on the APP ID and the specific service being used. Please refer to the TextIn documentation for details.
-
How do I obtain an API key?
Get TextIn APP_KEY and APP_SECRET by following the instructions here.
TextIn 相关
接入配置
支持任意 MCP 协议的客户端(如:Cursor、Claude、Cline)可方便使用TextIn MCP server。如下以 Cursor 平台为例
在 Cursor 中配置 建议使用最新版本的 Cursor 客户端
NPX:
{
"mcpServers": {
"textin-ocr": {
"command": "npx",
"args": [
"-y",
"@intsig/server-textin"
],
"env": {
"APP_ID": "<YOUR_APP_ID>",
"APP_SECRET": "<YOUR_APP_SECRET>",
"MCP_SERVER_REQUEST_TIMEOUT": "600000"
},
"timeout": 600
}
}
}