Keyboard Shortcut Finder

Productivity REST API MCP

Return keyboard shortcuts (Mac and Windows keys) that match a search query, app, or category. Covers VS Code, Chrome, Excel, Photoshop, Figma, Slack, macOS, Windows, Word, and Terminal. Call with no filters to list the apps and categories.

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

Call it over MCP

Tool name findutils:keyboard_shortcut_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": "keyboard_shortcut_finder",
      "arguments": {
        "query": "copy",
        "app": "VS Code",
        "limit": 5
      }
    }
  }'

Input schema

Argument Type Required Description
query string no Action or keyword to search for, e.g. "copy", "undo", "zoom in", "command palette".
app string (VS Code | Chrome | Excel | Photoshop | Figma | Slack | macOS | Windows | Word | Terminal) no Restrict to one app.
category string (General | Navigation | Editing | File Management | Selection | View | Debug | Terminal) no Restrict to one category.
limit integer no Maximum number of shortcuts to return (1-500). Default 50. Default: 50.

Example arguments (verified)

{
  "query": "copy",
  "app": "VS Code",
  "limit": 5
}

Also a REST endpoint

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

Open the REST reference for Keyboard Shortcut Finder →

More Productivity tools