Mime Type Finder

Network REST API MCP

Return MIME types with their file extensions and descriptions. Search by extension (".png" or "png"), by MIME type ("application/json") or by keyword ("spreadsheet"); filter by category.

This page documents the MCP tool findutils:mime_type_finder. See the REST reference →

Call it over MCP

Tool name findutils:mime_type_finder · no API keys · 120 requests/min per IP

Claude Code

claude mcp add findutils --transport http https://mcp.findutils.com/

Claude Desktop — claude_desktop_config.json

{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}

Raw JSON-RPC (any MCP client) — verified example

curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "mime_type_finder",
      "arguments": {
        "query": ".png"
      }
    }
  }'

Input schema

Argument Type Required Description
query string no Extension, MIME type or keyword. Empty returns the whole table.
category string (all | Application | Audio | Font | Image | Text | Video | Multipart | Message) no Limit results to one category. Default: "all".
limit integer no Maximum number of results (1-200). Default: 10.

Example arguments (verified)

{
  "query": ".png"
}

Also a REST endpoint

The same tool answers plain HTTP at POST /api/tools/mime-type-finder/execute — no key, 60 requests/min.

Open the REST reference for Mime Type Finder →

More Network tools