Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI-powered file type detection using Google Magika, identifying file types from content via tools like identify_file, identify_directory, and list_supported_types.

README.md

magika-mcp

MCP server for Google Magika — AI-powered file type detection.

Magika uses a deep learning model to identify file types from their content, not just extensions. This MCP server makes Magika's capabilities available to any MCP client (Claude Code, Claude Desktop, etc.).

Quick Start

Add to your MCP client config:

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

For Claude Code, add it with:

claude mcp add magika -- npx -y magika-mcp

Tools

identify_file

Identify a single file's content type.

Input: path (string) — file path Output: Enriched result with label, MIME type, group, description, extensions, confidence score, is_text flag.

identify_files

Batch-identify multiple files.

Input: paths (string[]) — array of file paths Output: Array of enriched results.

identify_content

Identify content from raw base64-encoded bytes.

Input: content (string) — base64-encoded file content Output: Enriched result.

identify_directory

Recursively scan a directory and identify all files.

Input:

  • path (string) — directory path
  • recursive (boolean, default: true) — scan recursively
  • limit (number, default: 1000) — max files to process

Output: Array of enriched results with file paths.

get_content_type_info

Look up metadata for a known content type label (no file analysis).

Input: label (string) — content type label (e.g., "python", "pdf", "jpeg") Output: MIME type, group, description, extensions, is_text.

list_supported_types

List all content types Magika can detect.

Input: group (string, optional) — filter by group (e.g., "code", "image", "document", "archive") Output: Array of content types with metadata.

Example Output

{
  "path": "/path/to/file.py",
  "label": "python",
  "mime_type": "text/x-python",
  "group": "code",
  "description": "Python source",
  "extensions": ["py", "pyi"],
  "is_text": true,
  "score": 0.997,
  "overwrite_reason": "none"
}

How It Works

  • Uses MagikaNode from the magika npm package (TensorFlow.js) for classification
  • Enriches results with a bundled content types knowledge base (MIME types, groups, descriptions, extensions)
  • The model (~5MB) downloads automatically on first use and is cached by TensorFlow.js
  • Lazy initialization — model loads on first tool call, not at server startup

Requirements

  • Node.js >= 18

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.