Talandor
Public MCP report

HubVibe Site Audits

https://hubvibe-io.com/mcp

Official Registry

Official Registry · io.github.Its-fortunatefolly/hubvibe · Publisher: io.github.Its-fortunatefolly

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://hubvibe-io.com/mcp
Tools5
AuthNo authentication challenge observed
Protocol2025-11-25
EvidencePublic contract observed
Latency8709 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

Public contract stable since
Last compared · No semantic contract change since the previous complete snapshot.
Info
chain_rpc was removed
· critical · high confidence · chain_rpc · Rule: tool-removed
Critical
market_data was removed
· critical · high confidence · market_data · Rule: tool-removed
Critical
prediction_markets was removed
· critical · high confidence · prediction_markets · Rule: tool-removed
Critical
web_extract was removed
· critical · high confidence · web_extract · Rule: tool-removed
Critical
web_fetch was removed
· critical · high confidence · web_fetch · Rule: tool-removed
Critical

A Watch would alert only if this change may affect the selected client.

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 latency8709 ms
Response bytes10746

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
audit_bundle
Declared read-only
Show server-provided details
Full site compliance bundle (all four audits)
Server description (copied; language not verified)
Full website audit in one call: accessibility (WCAG 2.1 A/AA via axe-core), on-page SEO, HTTP security headers and page speed / page weight, from a single browser load of one URL. Cheaper than four separate calls; if any part cannot run, nothing is billed. $0.15 per call. Returns: pass (bool) plus wcag{}, seo{}, security{}, performance{} sub-results.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "title": "Live URL to audit",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "examples": [
        "https://example.com"
      ],
      "description": "Live, fetchable http(s) URL to audit."
    }
  }
}
audit_performance
Declared read-only
Show server-provided details
Page performance audit
Server description (copied; language not verified)
Page speed and page weight audit of a web page from one real browser load: total bytes transferred, HTTP request count and DOM node count, measured rather than estimated, with findings when the page is heavy. Page-weight signals, not Core Web Vitals. $0.05 per call. Returns: pass (bool), metrics{}, findings[] with id/severity/detail.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "title": "Live URL to audit",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "examples": [
        "https://example.com"
      ],
      "description": "Live, fetchable http(s) URL to audit."
    }
  }
}
audit_security
Declared read-only
Show server-provided details
Security header audit
Server description (copied; language not verified)
Security headers check for a website: audits HTTPS, HSTS, Content- Security-Policy (CSP), X-Content-Type-Options, X-Frame-Options / clickjacking protection, Referrer-Policy and CORS from the real HTTP response of any live URL. Findings with severity for what is missing. Header posture only, not a penetration test. $0.05 per call. Returns: pass (bool), findings[] with id/severity/detail.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "title": "Live URL to audit",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "examples": [
        "https://example.com"
      ],
      "description": "Live, fetchable http(s) URL to audit."
    }
  }
}
audit_seo
Declared read-only
Show server-provided details
SEO and metadata audit
Server description (copied; language not verified)
SEO audit of a web page (on-page SEO check) for any live URL or raw HTML: title tag, meta description, H1 heading structure, canonical link, OpenGraph and social tags, JSON-LD structured data, html lang attribute. Rule-by-rule findings with severity and what is missing or malformed. $0.05 per call. Returns: pass (bool), findings[] with id/severity/detail.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "anyOf": [
    {
      "required": [
        "url"
      ]
    },
    {
      "required": [
        "html"
      ]
    }
  ],
  "title": "Live URL or raw HTML to audit",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "examples": [
        "https://example.com"
      ],
      "description": "Live, fetchable http(s) URL to audit."
    },
    "html": {
      "type": "string",
      "description": "Raw HTML source to audit instead of fetching a URL."
    }
  }
}
audit_wcag
Declared read-only
Show server-provided details
Accessibility audit (WCAG 2.1 A/AA)
Server description (copied; language not verified)
Website accessibility audit (a11y, WCAG compliance check): WCAG 2.1 level A and AA conformance of any live URL or raw HTML, tested with axe-core in a real headless browser. Returns every violation with rule id, impact, help text and affected node count. Deterministic rules; a check that cannot run returns an error, never a pass. $0.05 per call. Returns: pass (bool), violations[] with id/impact/help/help_url/nodes_affected.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "anyOf": [
    {
      "required": [
        "url"
      ]
    },
    {
      "required": [
        "html"
      ]
    }
  ],
  "title": "Live URL or raw HTML to audit",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "examples": [
        "https://example.com"
      ],
      "description": "Live, fetchable http(s) URL to audit."
    },
    "html": {
      "type": "string",
      "description": "Raw HTML source to audit instead of fetching a URL."
    }
  }
}

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
· stable since
2025-11-25 · 5 tools · no change · 12 checks
Operational
· stable since
2025-11-25 · 10 tools · no change · 3 checks
Complete public contract · 2025-11-25 · 5 tools
74d1a6e199ab
Complete public contract · 2025-11-25 · 10 tools
8f6173196790

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