{"id":157638,"date":"2026-06-09T16:10:23","date_gmt":"2026-06-09T13:10:23","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/"},"modified":"2026-06-09T16:10:23","modified_gmt":"2026-06-09T13:10:23","slug":"tool-switcher","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/","title":{"rendered":"Tool Switcher"},"content":{"rendered":"<p># Tool Switcher<br \/>\n![modrinth](https:\/\/modrinth.com\/mod\/tool-switcher)<br \/>\n![curseforge](https:\/\/www.curseforge.com\/minecraft\/mc-mods\/tool-switcher)<br \/>\n![codeberg](https:\/\/codeberg.org\/Maganoos\/tool-switcher)<\/p>\n<p>Tool Switcher is a simple utility mod that enables you to automatically switch tools depending on what block you are trying to break.<\/p>\n<p>### Features<br \/>\n&#8211; Automatically selects the optimal tool for mining, taking into account factors such as efficiency.<br \/>\n&#8211; Switches to tools outside the hotbar by temporarily swapping them into your current slot.<br \/>\n&#8211; Disables itself while you are sneaking, if enabled.<br \/>\n&#8211; Optionally prevents switching if the current tool has Silk Touch or Fortune.<br \/>\n&#8211; Fully customizable list of disabled blocks and tools.<\/p>\n<p>### Config<\/p>\n<p>All configuration options can be edited in the config file at `config\/tool-switcher.toml` or through **Mod Menu &#038; McQoy** (recommended).<\/p>\n<p>#### General Settings<br \/>\n| Option              | Type       | Default | Description                                                               |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `enabled`           | true\/false | `true`  | Enable\/disable the mod. Can be toggled with a keybind (default: Period).  |<br \/>\n| `showMessage`       | true\/false | `true`  | Whether to show a message on the screen when keybind is pressed.          |<\/p>\n<p>#### Behavior Settings<br \/>\n| Option               | Type       | Default | Description                                                               |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `sneaking`           | true\/false | `true`  | Whether Tool Switcher turns off while sneaking.                           |<br \/>\n| `goBack`             | true\/false | `true`  | Whether to restore the previous tool\/slot after releasing the attack key. |<br \/>\n| `respectSilkFortune` | true\/false | `true`  | Whether to not switch tools if you are holding a silk touch\/fortune tool. |<\/p>\n<p>#### Filter Settings<br \/>\n| Option             | Type         | Default | Description                                    |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `disabledTools`    | String Array | `[]`    | Tools that don&#8217;t get switched to.              |<br \/>\n| `disabledBlocks`   | String Array | `[]`    | Blocks that don&#8217;t trigger tool switching.      |<\/p>\n<details>\n<summary><b>How to Configure Filters<\/b><\/summary>\n<p>Tools and blocks must be specified using Minecraft&#8217;s resource location format in the TOML array syntax.<\/p>\n<p>**Example config file (`config\/tool-switcher.toml`):**<br \/>\n&#8220;`toml<br \/>\n# Enable or disable the mod. Can be toggled with a keybind.<br \/>\nenabled = true<br \/>\n# Whether Tool Switcher turns off while sneaking<br \/>\nsneaking = true<br \/>\n# Whether to show a message on the screen when keybind is pressed<br \/>\nshowMessage = true<br \/>\n# Whether to restore the previous tool\/slot after releasing the attack key<br \/>\ngoBack = true<br \/>\n# Whether to not switch tools if you are holding a Silk Touch or Fortune Tool<br \/>\nrespectSilkFortune = true<\/p>\n<p># Tools that don&#8217;t get switched to<br \/>\ndisabledTools = [<br \/>\n    &#8220;minecraft:wooden_pickaxe&#8221;,<br \/>\n    &#8220;minecraft:wooden_shovel&#8221;,<br \/>\n    &#8220;minecraft:golden_pickaxe&#8221;<br \/>\n]<\/p>\n<p># Blocks that don&#8217;t trigger tool switcher<br \/>\ndisabledBlocks = [<br \/>\n    &#8220;minecraft:diamond_block&#8221;,<br \/>\n    &#8220;minecraft:emerald_ore&#8221;,<br \/>\n    &#8220;minecraft:ancient_debris&#8221;<br \/>\n]<br \/>\n&#8220;`<\/p>\n<p>**Format:**<br \/>\n&#8211; Each entry must be in quotes<br \/>\n&#8211; Entries are separated by commas<br \/>\n&#8211; Use Minecraft&#8217;s resource location format: `&#8221;namespace:id&#8221;`<br \/>\n&#8211; Works with modded items: `&#8221;create:wrench&#8221;`, `&#8221;botania:mana_tablet&#8221;`<\/p>\n<p>**Common Tool IDs:**<br \/>\n&#8211; `minecraft:wooden_pickaxe`, `minecraft:stone_pickaxe`, `minecraft:iron_pickaxe`<br \/>\n&#8211; `minecraft:wooden_shovel`, `minecraft:stone_shovel`, `minecraft:iron_shovel`<br \/>\n&#8211; `minecraft:wooden_axe`, `minecraft:stone_axe`, `minecraft:iron_axe`<br \/>\n&#8211; `minecraft:golden_pickaxe`, `minecraft:golden_shovel`, `minecraft:golden_axe`<\/p>\n<p>**Common Block IDs:**<br \/>\n&#8211; `minecraft:diamond_ore`, `minecraft:deepslate_diamond_ore`<br \/>\n&#8211; `minecraft:ancient_debris`, `minecraft:gilded_blackstone`<br \/>\n&#8211; `minecraft:spawner`, `minecraft:end_portal_frame`<br \/>\n<\/details>\n<p>### How It Works<\/p>\n<p>**Hotbar Tools:** If the best tool is in your hotbar, Tool Switcher selects that slot.<\/p>\n<p>**Inventory Tools:** If the best tool is outside your hotbar, Tool Switcher temporarily swaps it into your current slot. When you release the attack key (or finish mining), it swaps back automatically (if `goBack` is enabled).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Automatically switches to the correct tool when breaking blocks.<\/p>\n","protected":false},"featured_media":157639,"template":"","meta":{"_minecraft_slug":"tool-switcher","_minecraft_project_id":"3CTNwVgW","_minecraft_author":"Maganoos","_minecraft_license":"MIT","_minecraft_downloads":22046,"_minecraft_follows":29,"_minecraft_client_side":"required","_minecraft_server_side":"unsupported","_minecraft_storage_type":"zip","_minecraft_archive_name":"tool-switcher.zip","_minecraft_size_bytes":1865568,"_minecraft_version_count":30,"_minecraft_updated_at":"2026-05-16T18:24:34.911115Z","_minecraft_date_created":"2025-07-27T21:45:21.090401Z","_minecraft_date_modified":"2026-05-12T16:01:10.244702Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/tool-switcher","_minecraft_icon_attachment_id":157639,"_minecraft_imported_at":"2026-06-09T13:10:23+00:00","_minecraft_import_hash":"392b36cd63688e2099ee8659d5c72580","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[88,97,92],"mod_loader":[99],"minecraft_version":[59,36,60,93,94,101,102,62,37,40,41,73,74,38,78,79,80,81,82,83,822,824,167,163],"class_list":["post-157638","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-equipment","mod_category-fabric","mod_category-utility","mod_loader-fabric","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-26-1","minecraft_version-26-1-snapshot-7","minecraft_version-26-1-snapshot-9","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tool Switcher - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tool Switcher - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Automatically switches to the correct tool when breaking blocks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tool-switcher\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tool-switcher\\\/\",\"name\":\"Tool Switcher - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tool-switcher\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tool-switcher\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tool-switcher-icon-8ccaf08a3a34883493d4045d3674fb0e8da9d4f3.png\",\"datePublished\":\"2026-06-09T13:10:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tool-switcher\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tool-switcher\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tool-switcher\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tool-switcher-icon-8ccaf08a3a34883493d4045d3674fb0e8da9d4f3.png\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tool-switcher-icon-8ccaf08a3a34883493d4045d3674fb0e8da9d4f3.png\",\"width\":1048,\"height\":1048},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tool-switcher\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Tool Switcher\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tool Switcher - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/","og_locale":"en_US","og_type":"article","og_title":"Tool Switcher - Minecraft","og_description":"Automatically switches to the correct tool when breaking blocks.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/","name":"Tool Switcher - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tool-switcher-icon-8ccaf08a3a34883493d4045d3674fb0e8da9d4f3.png","datePublished":"2026-06-09T13:10:23+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tool-switcher-icon-8ccaf08a3a34883493d4045d3674fb0e8da9d4f3.png","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tool-switcher-icon-8ccaf08a3a34883493d4045d3674fb0e8da9d4f3.png","width":1048,"height":1048},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tool-switcher\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Tool Switcher"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/157638","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/157639"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=157638"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=157638"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=157638"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=157638"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}