OCR MCP Service
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ocr_recognizeA | Recognize text from one local image path via PaddleOCR. |
| ocr_health_checkA | Return lightweight health status for the stdio runtime. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
The two tools have completely distinct purposes: one is for system health monitoring and the other is for the core OCR functionality. There is no overlap or ambiguity between checking runtime status and performing text recognition from images.
Both tools follow a consistent 'ocr_' prefix pattern with clear, descriptive names (ocr_health_check and ocr_recognize). The naming convention is uniform and predictable throughout the set.
With only 2 tools, this server feels significantly under-scoped for an OCR service. While the core recognition function is present, typical OCR workflows would benefit from additional tools like batch processing, format conversion, or configuration management.
The toolset is severely incomplete for an OCR domain. It lacks essential operations such as batch processing multiple images, handling different input formats, configuring OCR parameters, or providing text extraction with formatting/layout preservation. The health check tool doesn't meaningfully extend the OCR functionality.