WebMCP Registry

get-tool-schema

verifiedv0.1

Get the full contract for a single tool on a specific domain, including its input schema and version history. Use this when you need the exact current schema for a tool before calling it.

Updated 6/8/2026 · Created 6/8/2026

Input Schema

{
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "required": [
    "domain",
    "toolName"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "description": "Domain the tool belongs to, e.g. \"example.com\""
    },
    "toolName": {
      "type": "string",
      "description": "Name of the tool, e.g. \"add-to-cart\""
    }
  },
  "additionalProperties": false
}

Full Contract

{
  "name": "get-tool-schema",
  "description": "Get the full contract for a single tool on a specific domain, including its input schema and version history. Use this when you need the exact current schema for a tool before calling it.",
  "inputSchema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "required": [
      "domain",
      "toolName"
    ],
    "properties": {
      "domain": {
        "type": "string",
        "description": "Domain the tool belongs to, e.g. \"example.com\""
      },
      "toolName": {
        "type": "string",
        "description": "Name of the tool, e.g. \"add-to-cart\""
      }
    },
    "additionalProperties": false
  }
}

GET /api/tool/webmcp-registry.dev/get-tool-schema