claudeers.

🔓 unclaimed — this page was auto-generated from GitHub. Are you the creator?

Claim this page →
// MCP Servers

toolbox-mcp

MCP server with 35 local tools for AI agents: read PDFs, exact math, image convert & resize, QR codes, crypto, timezone, regex, JSON/CSV. Works in Claude, Cu…

// MCP Servers[ cli ][ api ][ desktop ][ web ][ claude ]#claude#ai-agents#anthropic#claude-code#cli#cursor#developer-tools#image-processing#mcp-serversMIT$open-sourceupdated 7 days ago
Actively maintained
98/100
last commit 7 days ago
last release none
releases 0
open issues 0
// install
{
  "mcpServers": {
    "toolbox-mcp": {
      "command": "npx",
      "args": ["-y", "https://github.com/medoxisto/toolbox-mcp"]
    }
  }
}

toolbox-mcp

An MCP server that gives AI agents real tools for the things it genuinely cannot do on its own. Read exact text from images and scans (OCR), process audio and video files, read and edit PDFs, work with images and Excel spreadsheets, run exact math, and more. Everything runs on your own machine over stdio. No network calls, nothing leaves your computer.

Inspired by the browser toolbox at footrue.com, reimplemented in Node so agents like Claude can call the same kind of tools directly.

Why

Modern models reason, see and code well, but there are whole categories they still cannot handle: they cannot open an audio or video file, they misread exact characters in an image, and they quietly get deterministic tasks (arithmetic, timezone math, regex) subtly wrong. This server hands those jobs to real, tested functions, so the agent gets the exact right answer, without burning tokens and without sending your data anywhere.

Two capabilities are worth calling out because a good model genuinely cannot do them at all:

  • Audio and video — an LLM cannot open a media file. These tools inspect, convert, trim, and pull frames or audio from video, using a bundled ffmpeg (no install, no network).
  • OCR — vision models describe images well but misread exact digits, serial numbers and table cells. ocr_image reads the real text with a local, offline model.

Tools

Reading images and media

ToolWhat it does
ocr_imageRead the exact text from an image, screenshot or scan (offline OCR)
media_infoDuration, format, resolution, frame rate, codecs of audio/video
extract_audioPull the audio track out of a video
extract_frameGrab a single frame from a video at a timestamp
video_to_gifTurn a video (or a clip of it) into an animated GIF
trim_mediaCut a section out of audio or video
convert_mediaConvert audio/video to another format
compress_videoRe-encode a video to shrink its size

PDF

ToolWhat it does
pdf_extract_textPull the readable text out of a PDF so an agent can read it
pdf_mergeMerge several PDFs into one
pdf_splitExtract a page range into a new PDF
pdf_rotateRotate all pages by 90 / 180 / 270
images_to_pdfCombine PNG/JPG images into a PDF, one per page
pdf_watermarkStamp a diagonal text watermark across every page
pdf_infoPage count, title, author, file size

Files and office

ToolWhat it does
xlsx_to_jsonRead an Excel spreadsheet into JSON
json_to_xlsxWrite JSON rows to an Excel spreadsheet
zip_createZip a list of files into an archive
zip_extractExtract a zip archive to a folder
html_to_markdownConvert HTML (e.g. a scraped page) into clean Markdown
exif_readRead a photo's EXIF metadata (camera, date, GPS)

Image

ToolWhat it does
image_convertConvert between png, jpeg, webp, avif, gif, tiff
image_resizeResize by width and/or height with fit control
image_compressShrink file size at a chosen quality
image_rotateRotate by any angle
image_grayscaleConvert to black and white
image_cropCrop a rectangular region
image_watermarkOverlay a text watermark
image_infoFormat, dimensions, channels, file size

Compute (the things LLMs get wrong)

ToolWhat it does
calculateEvaluate a math expression exactly, including unit conversions
timezone_convertConvert a date-time between IANA timezones
regex_extractApply a regex and return every match exactly
diff_textPrecise line-by-line diff of two texts
qr_generateGenerate a QR code PNG from text or a URL
qr_decodeRead the text or URL out of a QR code image
cron_describeExplain a cron expression and list the next run times
password_generateGenerate a strong random password

Crypto and security

ToolWhat it does
hash_textmd5 / sha1 / sha256 / sha384 / sha512 of text
hmac_signHMAC signature with a secret key
bcrypt_hash / bcrypt_verifyHash and check passwords with bcrypt
generate_uuidOne or more random v4 UUIDs
jwt_decodeDecode a JWT header and payload (no signature check)

Data and text

ToolWhat it does
format_jsonValidate and pretty-print or minify JSON
csv_to_jsonCSV into a JSON array of objects
convert_colorHex color into RGB and HSL
base64_encode / base64_decodeBase64 both ways
url_encode / url_decodePercent-encode and decode
slugifyText into a clean URL slug
change_caseupper, lower, title, sentence, camel, snake, kebab, constant
text_statsWord, character, sentence, line counts and reading time

PDF and image tools read and write files by path, so the agent can hand you a document and get a processed file back. Everything runs on your own machine.

Setup

toolbox-mcp is a standard stdio MCP server, so it works in any MCP client. The easiest way is npx, which downloads and runs it with no install or build step. Just add one of the configs below.

Claude Desktop / Cursor

Edit claude_desktop_config.json (Claude) or the MCP settings (Cursor):

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

VS Code (Copilot agent mode)

Create .vscode/mcp.json in your workspace, or run MCP: Open User Configuration from the Command Palette. Note that VS Code uses the servers key:

{
  "servers": {
    "toolbox": {
      "command": "npx",
      "args": ["-y", "toolbox-mcp"]
    }
  }
}

Google Antigravity

Open Settings > Customizations > Open MCP Config (this edits ~/.gemini/config/mcp_config.json), then add:

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

Save and hit refresh in the Installed MCP Servers section.

After configuring, restart or refresh the client and the tools appear automatically. Then just ask, for example, "read this PDF", "convert this image to webp", or "what is 90 km/h in m/s", and the agent will call the tool.

Run from source

To hack on it locally instead of using npx:

git clone https://github.com/medoxisto/toolbox-mcp
cd toolbox-mcp
npm install
npm run build   # or: npm run dev

Then point your client at node /absolute/path/to/toolbox-mcp/dist/index.js.

Privacy

Everything runs locally over stdio. There are no network requests and no telemetry. The compute, data and crypto tools are pure functions; the PDF and image tools read and write only the file paths you give them. Your data never leaves your machine.

Contributing

The toolbox is easy to extend: each tool is a small object with a name, description, a zod schema, and a handler that returns a string. See src/tools. PRs that add useful, deterministic, network-free tools are welcome.

License

MIT. See LICENSE.

// compatibility

Platformscli, api, desktop, web
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguageTypeScript

// faq

What is toolbox-mcp?

MCP server with 35 local tools for AI agents: read PDFs, exact math, image convert & resize, QR codes, crypto, timezone, regex, JSON/CSV. Works in Claude, Cursor, VS Code and Antigravity. No network, fully private.. It is open-source on GitHub.

Is toolbox-mcp free to use?

toolbox-mcp is open-source under the MIT license, so it is free to use.

What category does toolbox-mcp belong to?

toolbox-mcp is listed under mcp-servers in the Claudeers registry of Claude-compatible tools.

3 views
19 stars
unclaimed
updated 7 days ago

// embed badge

toolbox-mcp on Claudeers
[![Claudeers](https://claudeers.com/api/badge/toolbox-mcp.svg)](https://claudeers.com/toolbox-mcp)

// retro hit counter

toolbox-mcp hit counter
[![Hits](https://claudeers.com/api/counter/toolbox-mcp.svg)](https://claudeers.com/toolbox-mcp)

// reviews

// guestbook

0/500

// related in MCP Servers

🔓

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete…

// mcp-serversf/HTML164,687NOASSERTION[ claude ]
🔓

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io

// mcp-serversfarion1231/Rust112,854MIT[ claude ]
🔓

An open-source AI agent that brings the power of Gemini directly into your terminal.

// mcp-serversgoogle-gemini/TypeScript105,729Apache-2.0[ claude ]
🔓

A collection of MCP servers.

// mcp-serverspunkpeye/90,251MIT[ claude ]
→ see how toolbox-mcp connects across the ecosystem