# Mime Type Finder — REST API endpoint `mime-type-finder`

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.

- Category: network
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/mime-type-finder/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/mime-type-finder/
- Same tool on the other surface: https://findutils.com/mcp/mime-type-finder/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/mime-type-finder/execute \
  -H "Content-Type: application/json" \
  -d '{
    "query": ".png"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/mime-type-finder
```

## 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):

```json
{
  "query": ".png"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

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

Then ask the client to call `findutils:mime_type_finder`. Full MCP reference: https://findutils.com/mcp/mime-type-finder/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
