Back to MCP Servers

Hocr

A fastAPI-based FastMCP server with a Vue frontend that sends uploaded images to VLM via the MCP to quickly extract handwritten mathematical formulas as clean LaTeX code.

developer-toolsvueapi
By Wooonster
23Updated 10 months agoPython

Installation

npx -y hocr_mcp_server

Configuration

{
  "mcpServers": {
    "hocr_mcp_server": {
      "command": "npx",
      "args": ["-y", "hocr_mcp_server"]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes

HOCR MCP Agent

Trust Score

Vue Frontend

Start command:

cd hocr-vue-client/

npm install
npm run dev

Required packages:

cd hocr-vue-client/

npm install katex
npm install axios

MCP Server

Start command:

uvicorn mcp_server:app --reload --host 0.0.0.0 --port 8000
View source on GitHub