Talandor
Public MCP report

AgentReady Woo

https://app.utilityhouse.xyz/mcp

Official Registry

Official Registry · xyz.utilityhouse/agentready-woo · Publisher: xyz.utilityhouse

Last observed

Usable now
Can I use it?

Usable now

A public MCP contract was observed. Add the endpoint to a compatible client below. A Watch can alert you if this contract changes.

https://app.utilityhouse.xyz/mcp
Tools5
AuthNo authentication challenge observed
Protocol2025-11-25
EvidencePublic contract observed
Latency11584 ms

See the measured evidence

Client fit

Compatibility is inferred from published configuration rules and is not manually verified in each client.

Claude
Observed 2025-11-25.
Likely compatible · inferred
Cursor
Streamable HTTP and public HTTPS were observed.
Likely compatible · inferred
ChatGPT
Public tool names, descriptions and schemas were observed. Plan and workspace access still apply.
Likely compatible · inferred
VS Code
Public remote HTTP configuration can be assessed.
Likely compatible · inferred
Generic MCP
Observed 2025-11-25.
Likely compatible · inferred
Show compatibility evidence

Rule evidence: Remote HTTPS rule v0.2 · reviewed 2026-09-12 · Remote HTTP rule v0.2 · reviewed 2026-09-12 · Remote app rule v0.2 · reviewed 2026-09-12 · Protocol and transport rule v0.2 · reviewed 2026-09-12

What changed

No earlier complete public snapshot yet. Watch would start a baseline on the next complete check.

Evidence and limitations

Method: anonymous Streamable HTTP probe. We never invoke a tool.

Attempted protocols: 2026-07-28, 2025-11-25

Protocol2025-11-25
TransportStreamable HTTP
AuthNo authentication challenge observed
EvidencePublic contract observed
Total latency11584 ms
Response bytes15739

No diagnostic errors.

Server-provided content. Tool names, descriptions and schemas below are copied from the MCP server. They may be in another language. Talandor does not translate or verify them.
Tools and declared exposure

Server annotations are declarations, not verified behavior.

Show 5 of 5 server-provided tool definitions
claim_woo_release_result
Annotation present; effect not classified
Show server-provided details
Server description (copied; language not verified)
Claim a completed Release Gate result once. Requires release:claim; replay is never billable.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "required": [
    "run_id"
  ],
  "properties": {
    "run_id": {
      "type": "string",
      "maxLength": 100,
      "minLength": 8,
      "description": "Release Gate run identifier returned by start_woo_release_verification. It must belong to the authenticated account; never substitute a store URL, credential, or customer value."
    }
  },
  "additionalProperties": false
}
get_woo_release_verification
Declared read-only
Show server-provided details
Server description (copied; language not verified)
Get a Release Gate run owned by the bearer token account. Requires release:read.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "required": [
    "run_id"
  ],
  "properties": {
    "run_id": {
      "type": "string",
      "maxLength": 100,
      "minLength": 8,
      "description": "Release Gate run identifier returned by start_woo_release_verification. It must belong to the authenticated account; never substitute a store URL, credential, or customer value."
    }
  },
  "additionalProperties": false
}
preflight_woo_store
Declared read-only
Show server-provided details
Server description (copied; language not verified)
Use ONLY before a specific WooCommerce update or release when you need protocol-family evidence. Do NOT use it for a general score or fix list; use scan_woo_store_readiness for that. Inspect selected public WooCommerce and agent-protocol surfaces and return per-family PASS, FAIL, BLOCKED or UNMEASURED evidence. It changes nothing, is free, and BLOCKED or UNMEASURED is an abstention rather than a finding about the store.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "required": [
    "store_origin"
  ],
  "properties": {
    "store_origin": {
      "type": "string",
      "maxLength": 2048,
      "minLength": 8,
      "description": "Public HTTPS origin of the WooCommerce store, with no path, query, credentials, private host, or customer data; for example https://shop.example.com."
    },
    "requested_families": {
      "type": "array",
      "items": {
        "enum": [
          "woo",
          "robots",
          "jsonld",
          "mcp",
          "ucp",
          "acp"
        ],
        "type": "string"
      },
      "maxItems": 6,
      "minItems": 1,
      "description": "Public protocol families to inspect. Omit to check all supported families; use only woo, robots, jsonld, mcp, ucp, or acp."
    }
  },
  "additionalProperties": false
}
scan_woo_store_readiness
Declared read-only
Show server-provided details
Server description (copied; language not verified)
Use ONLY for a general storefront audit, readiness score, or fix recommendations. Do NOT use it to inspect a specific update or release; use preflight_woo_store for that. Check whether a public WooCommerce storefront is readable by shopping agents. Provide the store's HTTPS origin. The tool reads only public pages and the public WooCommerce Store API, changes nothing, and returns aggregate checks and recommendations without product text or customer data. When the storefront cannot be read at all, the tool abstains: state is UNREADABLE, score and grade are null, and the caller must not present that as a finding about the store.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "oneOf": [
    {
      "not": {
        "required": [
          "demo"
        ]
      },
      "required": [
        "store_url"
      ]
    },
    {
      "not": {
        "required": [
          "store_url"
        ]
      },
      "required": [
        "demo"
      ]
    }
  ],
  "properties": {
    "demo": {
      "type": "boolean",
      "const": true,
      "description": "Run a deterministic synthetic demonstration instead of scanning a live store."
    },
    "store_url": {
      "type": "string",
      "format": "uri",
      "maxLength": 200,
      "description": "Public HTTPS origin of the WooCommerce storefront, for example https://shop.example.com"
    }
  },
  "additionalProperties": false
}
start_woo_release_verification
Annotation present; effect not classified
Show server-provided details
Server description (copied; language not verified)
Start an ownership-authorized Release Gate run. Requires a bearer token with release:start.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "required": [
    "idempotency_key",
    "mode",
    "requested_families",
    "store_id"
  ],
  "properties": {
    "mode": {
      "type": "string",
      "const": "owned-safe-active",
      "description": "Required safety mode. The only accepted value is owned-safe-active, which requires verified store ownership before the run starts."
    },
    "store_id": {
      "type": "string",
      "maxLength": 100,
      "minLength": 8,
      "description": "AgentReady store identifier owned by the authenticated account. Use the stored identifier, never a store URL, secret, or customer value."
    },
    "baseline_run_id": {
      "type": "string",
      "maxLength": 100,
      "minLength": 8,
      "description": "Optional prior Release Gate run identifier from the same owned store to use as the comparison baseline; omit when no valid baseline exists."
    },
    "idempotency_key": {
      "type": "string",
      "maxLength": 200,
      "minLength": 16,
      "description": "Caller-generated retry key for this exact start request. Reuse it only when retrying the same operation; do not place credentials or customer data in it."
    },
    "requested_families": {
      "type": "array",
      "items": {
        "enum": [
          "woo",
          "robots",
          "jsonld",
          "mcp",
          "ucp",
          "acp"
        ],
        "type": "string"
      },
      "maxItems": 6,
      "minItems": 1,
      "description": "One or more protocol families the owner authorizes this Release Gate run to verify: woo, robots, jsonld, mcp, ucp, or acp."
    }
  },
  "additionalProperties": false
}

How to use this MCP

Talandor checks the server; it does not connect the server to your assistant.

Choose your client below, then copy the endpoint or configuration. Authentication is completed with the MCP provider, never inside Talandor.

Open the official client guide (opens in a new tab)
Observation history
Operational
2025-11-25 · 5 tools
Unreachable now
No protocol
Unreachable now
No protocol
Operational
· stable since
2025-11-25 · 5 tools · no change · 2 checks
Unreachable now
No protocol
Operational
· stable since
2025-11-25 · 5 tools · no change · 2 checks
Unreachable now
No protocol
Unreachable now
No protocol
Unreachable now
No protocol
Unreachable now
No protocol
Unreachable now
No protocol
Operational
· stable since
2025-11-25 · 5 tools · no change · 2 checks
Complete public contract · 2025-11-25 · 5 tools
3d6de961a822

Deep monitoring eligibility

Eligible for deep monitoring

A complete public tools/list contract was observed, so a future deep-monitoring baseline can be compared safely.

Personal Watch is not open yet. This report does not start a Watch or a payment.

See public monitoring
Watch · 9 €/month

Watch this MCP

Your agent depends on this MCP. We tell you before a change breaks it.

  • Know when it goes downWe confirm an outage before we alert you, so a single failed check is not treated as a lasting outage.
  • Know when its contract changesWe compare complete public tool catalogs and authentication surfaces over time.
  • Know what changed and what to fixAn alert names the change and the next step for the client you selected.

Full public-contract coverage: Availability, protocol, auth and public tool contract changes can be compared.

Full WatchAvailability, protocol, auth and public tool contract changes
Surface WatchAvailability, TLS, protocol and auth surface — no private tool diff

When Watch is open, you will be able to add, pause, resume, replace, or remove up to five endpoints. Watch checkout is not open. This page does not start a payment. You can sign in from the header; that creates an account, not a Watch. Opening date: not announced yet. Hosted checkout remains closed.

See Watch price, terms and refunds