Handwriting OCR MCP Server
Allows retrieving OCR results from handwritten documents as formatted Markdown text.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Handwriting OCR MCP Serverupload this scanned note and convert it to text"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Handwriting OCR MCP Server
A Model Context Protocol (MCP) Server for Handwriting OCR.
⭐ Recommended: use the hosted (remote) MCP server
You no longer need to run this local server. Handwriting OCR now offers a hosted MCP server you connect to directly — no Node.js install, no build step, and no copying an API token.
Endpoint:
https://mcp.handwritingocr.comAuth: OAuth — your MCP client opens a sign-in and consent page in your browser; there's no token to copy or store.
More capabilities than this local server: submit documents, check status, retrieve results, export to Word / Excel / JSON, and use extractors for structured field extraction. It also ships a built-in usage guide so your assistant knows what the service does and how to get good results.
Add it to any client that supports remote MCP servers. For example, in Claude Desktop's config:
{
"mcpServers": {
"handwriting-ocr": {
"url": "https://mcp.handwritingocr.com"
}
}
}The exact way to add a remote server varies by client (some have a "Connectors" UI, some need
"type": "http", and stdio-only clients can bridge via themcp-remoteproxy). See your client's remote-MCP documentation.
The local server documented below still works and can be useful for self-hosted or offline setups, but the hosted server is easier and preferred.
Related MCP server: Vision-OCR-MCP
Self-hosted (local) server
The rest of this document covers running the local Node.js server, which talks to the Handwriting OCR API using an API token.
Overview
The Handwriting OCR MCP Server enables integration between MCP clients and the Handwriting OCR service. This document outlines the setup process and provides a basic example of using the client.
This server allows you to upload images and PDF documents, check their status, and retrieve the OCR result as Markdown.
Tools
Transcription
Upload Document
Check Status
Get Text
Prerequisites
Before you begin, ensure you have the following:
Node.js installed on your system (recommended version 18.x or higher).
An active account on the Handwriting OCR Platform and an active API token.
Installation
Installing via Smithery
To install handwriting-ocr-mcp-server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @Handwriting-OCR/handwriting-ocr-mcp-server --client claudeInstalling manually for Claude Desktop
To use the Handwriting OCR MCP Server in Claude Desktop application, use:
{
"mcpServers": {
"handwriting-ocr": {
"command": "node",
"args": [
"/Users/mateo/Local/Code/MCP/handwriting-ocr/build/index.js"
],
"env": {
"API_TOKEN": "your-api-token",
},
"disabled": false,
"autoApprove": []
}
}
}Configuration
The Handwriting OCR MCP Server supports environment variables to be set for authentication and configuration:
API_TOKEN: Your API token.
You can find these values in the API settings dashboard on the Handwriting OCR Platform.
Support
Please refer to the Handwriting OCR API Documentation.
For support with the Handwriting OCR MCP Server, please submit a GitHub Issue.
About
Model Context Protocol (MCP) Server for Handwriting OCR Platform
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceConverts documents and images to Markdown using Mistral AI's OCR, enabling AI-powered document processing via MCP-compatible clients like Claude Desktop.142MIT
- Flicense-qualityDmaintenanceEnables OCR on images and PDFs, including full-page OCR, region OCR by description or bounding box, and caching with summary capabilities.
- AlicenseAqualityDmaintenanceHigh-performance OCR MCP server supporting multiple input modes (path, base64, URL, upload), batch processing, and output formats like plain, JSON, and Markdown.42MIT
- FlicenseBqualityBmaintenanceEnables document OCR processing via OcrPlane APIs, supporting document parsing, asynchronous polling, markdown extraction, and task management.7
Related MCP Connectors
OCR.space MCP — wraps the OCR.space API (ocr.space) for image/PDF → text OCR.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Hosted MCP for denial, prior auth, reimbursement, workflow validation, batch scoring, and feedback.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Handwriting-OCR/handwriting-ocr-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server