CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Frenchie

lab94/frenchie-skill
6 toolsauthSTDIO, HTTPregistry active
Summary

Frenchie gives your AI agent file parsing and multimodal capabilities through a clean MCP interface. It exposes tools for OCR on PDFs and images, audio and video transcription, Office and CSV extraction to Markdown, and image generation from prompts. Results land in `.frenchie/` as Markdown or image files. The package bundles both stdio and HTTP transports, so it works in local agents like Claude Code and Cursor as well as hosted environments like Claude.ai and ChatGPT that only speak HTTP. You get 100 free credits on signup. The same package also ships Frenchie Method, a text-only workflow orchestrator with requirement analysis, test planning, and PR review commands. Reach for this when you need your agent to read documents, parse spreadsheets, transcribe recordings, or generate images without writing integration code yourself.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

6 tools
ocr_to_markdownConvert a PDF or image file to clean Markdown via OCR. Supports PDF, PNG, JPG/JPEG, and WebP. Returns inline Markdown for small files or a jobId for async processing on large files.3 params

Convert a PDF or image file to clean Markdown via OCR. Supports PDF, PNG, JPG/JPEG, and WebP. Returns inline Markdown for small files or a jobId for async processing on large files.

Parameters* required
api_keystring
Optional Frenchie API key (fr_...). Falls back to the FRENCHIE_API_KEY env var when omitted.
file_pathstring
Absolute local file path. Stdio transport only — over HTTP, upload via upload_file first.
uploaded_file_referencestring
Object key returned by the upload_file tool (HTTP transport)
transcribe_to_markdownConvert an audio or video file to a Markdown transcript. Supports MP3, M4A, WAV, MP4, MOV, and WebM. Long files are chunked and reassembled automatically.4 params

Convert an audio or video file to a Markdown transcript. Supports MP3, M4A, WAV, MP4, MOV, and WebM. Long files are chunked and reassembled automatically.

Parameters* required
api_keystring
Optional Frenchie API key (fr_...). Falls back to the FRENCHIE_API_KEY env var when omitted.
languagestring
Optional ISO 639-1 language hint (e.g. th, en, ja) for better accuracy
file_pathstring
Absolute local file path. Stdio transport only — over HTTP, upload via upload_file first.
uploaded_file_referencestring
Object key returned by the upload_file tool (HTTP transport)
generate_imageGenerate a single image from a text prompt. Supports optional style, size, quality, format, and background controls. Returns a saved local file path (stdio) or a presigned imageUrl that must be downloaded within 30 minutes (HTTP).8 params

Generate a single image from a text prompt. Supports optional style, size, quality, format, and background controls. Returns a saved local file path (stdio) or a presigned imageUrl that must be downloaded within 30 minutes (HTTP).

Parameters* required
sizestring
Optional output size
stylestring
Optional style direction merged into the provider prompt
formatstring
Optional output format
promptstring
Plain-language description of the image to generate
api_keystring
Optional Frenchie API key (fr_...). Falls back to the FRENCHIE_API_KEY env var when omitted.
qualitystring
Optional output quality
backgroundstring
Optional output background
output_dirstring
Stdio only. Absolute directory under which .frenchie/<slug>/generated.<ext> is saved. Defaults to the MCP server's process cwd. Pass your workspace root so images don't land in $HOME on GUI-spawned agents.
get_job_resultRetrieve the result of an async OCR, transcription, or image generation job by job_id. Call this after a tool returns status: "processing".2 params

Retrieve the result of an async OCR, transcription, or image generation job by job_id. Call this after a tool returns status: "processing".

Parameters* required
job_idstring
Job ID returned from a previous async tool call
api_keystring
Optional Frenchie API key (fr_...). Falls back to the FRENCHIE_API_KEY env var when omitted.
upload_fileHTTP transport only. Get a presigned S3 upload URL for a local file so the agent can PUT the file and then pass the returned object_key as uploaded_file_reference to ocr_to_markdown or transcribe_to_markdown.4 params

HTTP transport only. Get a presigned S3 upload URL for a local file so the agent can PUT the file and then pass the returned object_key as uploaded_file_reference to ocr_to_markdown or transcribe_to_markdown.

Parameters* required
api_keystring
Optional Frenchie API key (fr_...). Falls back to the FRENCHIE_API_KEY env var when omitted.
filenamestring
Original filename with extension (e.g. 'report.pdf').
file_sizeinteger
File size in bytes
mime_typestring
MIME type (e.g. 'application/pdf', 'audio/mpeg').
fetch_result_fileHTTP transport only. Get a temporary download URL for a result file stored on the server (used when OCR results reference images via frenchie-result:<objectKey>). URLs expire in 15 minutes.2 params

HTTP transport only. Get a temporary download URL for a result file stored on the server (used when OCR results reference images via frenchie-result:<objectKey>). URLs expire in 15 minutes.

Parameters* required
api_keystring
Optional Frenchie API key (fr_...). Falls back to the FRENCHIE_API_KEY env var when omitted.
object_keystring
Object key parsed from a frenchie-result:<objectKey> reference

Frenchie — your agent's best friend.

smithery badge

@lab94/frenchie

Frenchie — your agent's best friend.

Install Frenchie in your coding agent with one command. Frenchie Kit gives agents file and multimodal capabilities: read PDFs and images, transcribe audio and video, extract Office/CSV files to Markdown, and generate images from text prompts. Frenchie Method gives teams a structured workflow from requirement to release.

Upgrading from 0.1.x or 0.2.x? See MIGRATION.md for the breaking changes in 0.3.0 (stdio metadata-only responses, absolute-path MCP configs, new mcp --help / --selftest flags).

This package ships:

  • Frenchie Kit (/ocr, /transcribe, /extract, /generate-image, /frenchie-status commands + HTTP/stdio MCP guidance)
  • Frenchie Method (/frenchie-method, /requirement, /qa-analysis, /implement, /run-test, /pr-review, /release-check, and related workflow commands)
  • The Frenchie stdio MCP server (lab94-frenchie mcp) bundled for npx
  • An installer that wires skills and MCP config into your agent

Quick start

1. Install the skills

From the root of your project:

npx @lab94/frenchie install

This installs Frenchie Kit and Frenchie Method skills. Method is text-only and works without an API key.

Optional Method config:

npx @lab94/frenchie install --init-method

This creates .frenchie/method.config.json and .frenchie/.gitignore; it does not edit your root .gitignore.

2. Log in for Kit MCP tools when you need file or image capabilities

Create an account at getfrenchie.dev. You get 100 free credits on your first signup, once per email. No card required.

Then connect your local agent:

npx @lab94/frenchie login

The login command opens a browser device-code flow, then writes FRENCHIE_API_KEY into the MCP config the installer created. The full key is never printed.

Fallback if you already have a key from the dashboard:

npx @lab94/frenchie install --api-key fr_your_key_here

To target a specific agent:

npx @lab94/frenchie login --agent claude
npx @lab94/frenchie login --agent cursor
npx @lab94/frenchie login --agent codex
npx @lab94/frenchie login --agent vscode
npx @lab94/frenchie login --agent gemini

User-level installs (Antigravity, Windsurf, Zed, Claude Desktop) need the --global flag — auto-detect never writes under $HOME:

npx @lab94/frenchie login --agent antigravity   --global
npx @lab94/frenchie login --agent windsurf       --global
npx @lab94/frenchie login --agent zed            --global
npx @lab94/frenchie login --agent claude-desktop --global

Fallback with an existing key:

npx @lab94/frenchie install --agent claude        --api-key fr_…
npx @lab94/frenchie install --agent codex         --api-key fr_…
npx @lab94/frenchie install --agent antigravity   --global --api-key fr_…
npx @lab94/frenchie install --agent claude-desktop --global --api-key fr_…

After login, your agent can call ocr_to_markdown, transcribe_to_markdown, extract_to_markdown, or generate_image. OCR/transcription/extraction results are saved to .frenchie/<name>/result.md automatically; generated images are saved to .frenchie/<slug>/generated.<ext>.

Upgrading later

When a new Frenchie version ships, the pinned package spec inside each MCP config (@lab94/frenchie@0.5.0) needs to point at the new version so npx stops serving a cached older bundle. Two upgrade commands cover everything:

# Project-scoped configs in this directory (.mcp.json, .cursor/mcp.json, .codex/config.toml, etc.)
npx @lab94/frenchie@latest install

# Every $HOME config that already has a frenchie entry — Antigravity, Claude Desktop, Windsurf, Zed,
# and any global Claude Code / Cursor / Codex / Gemini configs you set up. cwd doesn't matter.
npx @lab94/frenchie@latest install --global

install --global is upgrade-mode: it only rewrites frenchie entries that already exist. It will not surprise-install anything new under $HOME. First-time global installs still go through install --agent <name> --global.

3. Restart your agent

The installer prints the restart hint for your agent. After that, ask:

OCR ./report.pdf with Frenchie

…and Frenchie takes it from there.

For workflow orchestration, ask:

/frenchie-method

/frenchie remains the Kit entrypoint in agents that use a single Frenchie command. It is not an alias for Method.

Hosted agents (Lovable, Manus, Claude.ai, ChatGPT.com, Le Chat)

These agents can't run local npm binaries. Use the hosted MCP endpoint instead:

URL:    https://mcp.getfrenchie.dev
Header: Authorization: Bearer fr_your_key_here

The same @lab94/frenchie skill files work in HTTP mode — install them once with install --agent <name> and the included SKILL.md will tell the agent to upload files via upload_file before calling OCR/transcription/extraction. Image generation does not need an upload step in HTTP mode; it returns a short-lived imageUrl that the agent should download for the user.

What you get

Frenchie Kit

CommandWhat it does
/ocr <file>Parse a PDF or image into Markdown
/transcribe <file>Parse audio or video into a Markdown transcript
/extract <file>Parse DOCX, XLSX, CSV, TSV, or PPTX into Markdown
/generate-image <prompt>Generate a single image from a text prompt
/frenchie-statusCheck credits and recent jobs

Under the hood, Frenchie exposes these MCP tools:

  • ocr_to_markdown
  • transcribe_to_markdown
  • extract_to_markdown
  • generate_image
  • get_job_result
  • upload_file (HTTP mode only)
  • fetch_result_file (HTTP mode only)

Frenchie Method

Slash notation is the canonical Method command name. Claude Code reads command files directly. Codex Desktop gets the same entries through wrapper skills such as requirement and qa-analysis; restart Codex after install before trying /requirement. Hosts without slash support can use natural language such as Frenchie Method requirement ....

CommandWhat it does
/frenchie-methodRoute a task through Method from requirement to release
/method-checkValidate Method config, artifacts, gates, and next action
/requirementTurn a request into scoped requirements
/qa-analysis / /test-caseDesign proof before implementation planning
/sa-analysis / /implementation-planAnalyze architecture and implementation approach
/implementExecute from Method artifacts using the current agent
/run-testRun repo-declared verification and write a test report
/pr-review / /review-prReview the result, tests, security, and artifact drift
/release-checkRead-only release readiness gate

Method stores optional workflow artifacts under .frenchie/docs/feature/. install --init-method also writes a visible skillTriggers skeleton in .frenchie/method.config.json; command keys are empty slots teams can fill with installed agent skills, for example "requirement": ["brainstorming"]. Teams decide whether to commit or ignore Method config and artifacts.

Invocation — how to call Frenchie in each agent

Every agent handles MCP a little differently. /ocr is a Claude Code-only slash command; Method slash commands are host-dependent and use Codex wrapper skills outside Claude Code. Other agents use natural language, @-mention, or a server-name slash command. All facts below are dogfood-verified.

AgentInvokeFull guide
Claude Code/ocr TOR.pdfdocs
CursorUse Frenchie to OCR TOR.pdfdocs
Codex (Desktop / CLI / IDE)Kit: /frenchie TOR.pdf · @frenchie ocr TOR.pdf; Method: /requirement after restart, or Frenchie Method requirement ...docs
Antigravity/frenchie TOR.pdf (invokes by server name)docs
VS Code Copilot/frenchie TOR.pdfdocs
Claude DesktopUse Frenchie to OCR TOR.pdfdocs
WindsurfOCR TOR.pdf via Frenchiedocs
Gemini CLIOCR TOR.pdf with Frenchiedocs
ZedOCR TOR.pdf via Frenchiedocs

Something not working? See the symptom-first troubleshooting guide — every error we've hit in dogfood has a canonical entry.

Pricing

Simple numbers. No subscriptions.

File extraction pricing: DOCX 0.5 credits per page, XLSX 0.5 credits per sheet, CSV/TSV 0.5 credits per file, PPTX 1 credit per slide.

ActionCost
OCR1 credit per page
Transcription2 credits per minute
DOCX extraction0.5 credits per page
XLSX extraction0.5 credits per sheet
CSV/TSV extraction0.5 credits per file
PPTX extraction1 credit per slide
Image generation20 credits per image

$1 = 100 credits. Credits don't expire.

Privacy

Files are processed and deleted. Results expire about 30 minutes after first delivery. If you need a durable copy, save the Markdown when it comes back.

Supported formats

OCR: PDF, PNG, JPG, JPEG, WebP

Transcription: MP3, M4A, WAV, MP4, MOV, WebM

File extraction: DOCX, XLSX, CSV, TSV, PPTX

Image generation: PNG, JPEG, WebP output from text prompts

Need help?

  • Docs
  • Dashboard
  • LAB94
  • support@getfrenchie.dev
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

FRENCHIE_API_KEY*secret

Your Frenchie API key (starts with fr_). Create one at https://getfrenchie.dev/dashboard/api-keys — first signup comes with 100 free credits.

FRENCHIE_DEFAULT_LANGUAGE

Optional ISO 639-1 language hint (e.g. 'th', 'en', 'ja') applied to transcribe_to_markdown when the tool input does not specify a language. Tool-level language always wins.

Registryactive
Package@lab94/frenchie
TransportSTDIO, HTTP
AuthRequired
UpdatedMay 7, 2026
View on GitHub