# Http Status Code Lookup — MCP tool `findutils:http_status_code_lookup`

Return the meaning, typical use case and fix for HTTP status codes. Look up one code (e.g. "404"), a class ("4xx"), or search by name or keyword ("too many requests"); 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/http-status-code-lookup/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/mcp/http-status-code-lookup/
- Same tool on the other surface: https://findutils.com/api/http-status-code-lookup/

## Connect

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

Claude Desktop (`claude_desktop_config.json`):

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

## Call the tool (verified example)

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `query` | string | no | Status code, class or keyword, e.g. "404", "5xx", "rate limit". Empty returns the whole table. |
| `category` | string (all \| 1xx Informational \| 2xx Success \| 3xx Redirection \| 4xx Client Error \| 5xx Server Error) | no | Limit results to one class. Default: `"all"`. |
| `limit` | integer | no | Maximum number of results (1-100). Default: `10`. |

Example arguments (verified):

```json
{
  "query": "404"
}
```

## Also a REST endpoint

```bash
curl -X POST https://api.findutils.com/api/tools/http-status-code-lookup/execute \
  -H "Content-Type: application/json" \
  -d '{
    "query": "404"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/http-status-code-lookup
```

Full REST reference: https://findutils.com/api/http-status-code-lookup/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
