GunSpec

All 30 tools

A firearm's mount interfaces

  • gunspec_firearm_interfaces
  • Studio
  • Read-only

Returns the mount standards a firearm exposes at each position (muzzle thread, rail, magazine well, stock), with the source and confidence of each row. Requires the Studio plan.

Example usage

  1. 1

    A person asks

    • What mounting interfaces does the Glock 17 have?
  2. 2

    The assistant calls the tool

    tools/call
    json
    {  "name": "gunspec_firearm_interfaces",  "arguments": {    "id": "glock-g17"  }}
  3. 3

    The server answers

    Result
    json
    {  "firearm": {    "id": "glock-g17",    "name": "Glock 17"  },  "platforms": [    {      "id": "glock-gen3-4-9mm",      "name": "Glock Gen3 and Gen4 9x19 double-stack"    }  ],  "interfaces": [    {      "position": "underbarrel",      "standardId": "rail:picatinny",      "name": "Picatinny rail (MIL-STD-1913)",      "kind": "rail",      "source": "inferred",      "confidence": 0.4,      "inheritedFrom": null,      "notes": "backfill:pic-under-pistol tag"    },    {      "position": "mag_well",      "standardId": "mag:glock-9-double",      "name": "Glock 9x19 double-stack magazine well",      "kind": "magazine_well",      "source": "inherited:platform",      "confidence": 1,      "inheritedFrom": "glock-gen3-4-9mm",      "notes": null    },    {      "position": "sights",      "standardId": "dovetail:glock",      "name": "Glock front and rear sight cut",      "kind": "sight_dovetail",      "source": "inherited:platform",      "confidence": 1,      "inheritedFrom": "glock-gen3-4-9mm",      "notes": null    }  ]}

    Captured from the live API on Sep 17, 2026. Lists and long text are shortened for display.

Related references

Arguments

NameTypeDescription
id (required)stringThe firearm slug, e.g. as returned by a list or search tool.