Talandor
Rapport de connecteur

KDAN PDF

https://mcp.kdandoc.com/mcp

Registre officiel

Registre officiel · com.kdandoc.mcp/kdan-pdf-mcp · Espace de l’éditeur : com.kdandoc.mcp

Serveur vérifié aujourd’hui à 22:12 UTC

Catalogue affiché : dernière observation complète du 19 septembre

16 outils publics observés. Outils non exécutés. Ces outils viennent de l’observation de catalogue ci-dessus, pas du dernier contrôle de disponibilité.

Serveur accessible

Qu’a observé Talandor ?

Le serveur a répondu

Ajoutez l’adresse à votre assistant à l’aide de la configuration ci-dessous. Un Watch peut vous prévenir si ce catalogue public change.

Contrôle public du protocole et de tools/list, pas une validation fonctionnelle.

https://mcp.kdandoc.com/mcp
DisponibilitéServeur accessiblemesuré
Outils16 outils publics observésmesuré
Test de l’assistantNon testé par Talandorinconnu

Configurer votre assistant · Détails du contrôle

Configuration pour votre assistant

Talandor contrôle le serveur ; il ne le connecte pas à votre assistant.

Choisissez votre assistant, puis copiez la configuration affichée. L’authentification se fait chez le fournisseur du connecteur, jamais dans Talandor.

    Ouvrir le guide officiel (nouvel onglet)
    Détails du contrôle

    Ce qui a changé

    Public contract stable since
    Last check · No semantic contract change since the previous complete snapshot.
    Info

    Les notes ci-dessus concernent ce connecteur.

    Contenu fourni par le serveur. Les noms, descriptions et schémas ci-dessous sont copiés du serveur MCP. Ils peuvent être dans une autre langue. Talandor ne les traduit pas et ne les vérifie pas.
    Outils et exposition déclarée

    Les annotations du serveur sont des déclarations, pas un comportement vérifié.

    Afficher 16 définitions d’outils fournies par le serveur sur 16
    batch_upload_pdf
    Annotation présente ; effet non classé
    Afficher les détails fournis par le serveur
    Batch Upload PDFs
    Description du serveur (copiée ; langue non vérifiée)
    Upload multiple PDF files from ChatGPT file attachments. Use this when the user provides multiple file attachments in ChatGPT. Downloads each PDF from its signed URL and stores it. Returns session_id and a list of job_ids. Like upload_pdf, this ONLY works on hosts that resolve chat attachments for you (ChatGPT). On Claude and other MCP clients, call create_upload_page instead. Never invent or guess a download_url or file_id. MANDATORY WORKFLOW before calling this tool: 1. ALWAYS call check_upload_status FIRST — even if you think the files are new. 2. Only include files confirmed absent from check_upload_status. If ALL files are already uploaded, skip batch_upload_pdf entirely and reuse the existing job_ids. 3. Reuse job_ids from already_uploaded — do NOT re-upload those files. Skipping step 1 and calling batch_upload_pdf directly is FORBIDDEN. After batch_upload_pdf completes: if the user requested a comparison, call 'compare_pdfs' with the returned job_ids immediately.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "pdf_files"
      ],
      "properties": {
        "pdf_files": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "download_url",
              "file_id"
            ],
            "properties": {
              "file_id": {
                "type": "string",
                "description": "ChatGPT file identifier."
              },
              "file_name": {
                "type": "string",
                "default": "",
                "description": "Original file name."
              },
              "mime_type": {
                "type": "string",
                "default": "",
                "description": "MIME type of the file."
              },
              "download_url": {
                "type": "string",
                "description": "Signed URL to download the file from."
              }
            },
            "description": "A file attachment supplied by the host.",
            "additionalProperties": true
          },
          "description": "The file attachments, supplied by the host."
        },
        "session_id": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Existing session ID to group these files.\nIf omitted, a new session is created."
        }
      },
      "additionalProperties": false
    }
    change_password
    Annotation présente ; effet non classé
    Afficher les détails fournis par le serveur
    Change PDF Password
    Description du serveur (copiée ; langue non vérifiée)
    Change the password of an already-protected PDF file. Creates a NEW job_id (with parent_job_id linking to the source). After the operation completes, call 'view_pdf' with the new job_id to display the result. Do NOT call this on an unprotected PDF — use set_password instead.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "job_id",
        "old_password",
        "owner",
        "password",
        "session_id"
      ],
      "properties": {
        "owner": {
          "type": "string",
          "description": "New owner password."
        },
        "job_id": {
          "type": "string",
          "description": "Job ID of the password-protected PDF (use the latest job_id)."
        },
        "password": {
          "type": "string",
          "description": "New user password."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that the job belongs to."
        },
        "old_password": {
          "type": "string",
          "description": "The current user password needed to unlock the PDF."
        }
      },
      "additionalProperties": false
    }
    check_upload_status
    Déclaré en lecture seule
    Afficher les détails fournis par le serveur
    Check Upload Status
    Description du serveur (copiée ; langue non vérifiée)
    Check existing uploads and determine which files still need uploading. Call this BEFORE upload_pdf or create_upload_page to avoid duplicate uploads. Also call it after the user uploads via the widget to discover the new file and its job_id. Returns 'session_id' (always — store it!), plus: - 'already_uploaded': files from pending_filenames that are already in this session, with reusable job_ids (empty when pending_filenames is omitted) - 'needs_upload': files not yet in this session (must be uploaded) - 'jobs' / 'count': every file currently stored in this session You MUST call this tool before any upload, and you MUST act on its result immediately. When you passed pending_filenames: - 'needs_upload' is non-empty → call upload_pdf (single) or batch_upload_pdf (multiple) with ONLY the files listed in 'needs_upload'. Pass the same session_id. Do NOT upload files in 'already_uploaded'. - 'needs_upload' is empty → skip uploading entirely; use the job_ids from 'already_uploaded'. When pending_filenames is omitted, 'already_uploaded' and 'needs_upload' are always empty and carry NO meaning — read 'jobs' instead. A non-empty 'jobs' means the files are already here: use those job_ids and do NOT ask the user to upload again.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "properties": {
        "session_id": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Session ID from a previous upload_pdf or create_upload_page call.\nIf omitted, a new session_id is generated and ALL pending files are\ntreated as needs_upload (new workflow)."
        },
        "pending_filenames": {
          "anyOf": [
            {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Bare filenames to check, e.g. ['FileA.pdf', 'FileB.pdf'].\nNever include directory paths like '/mnt/data/FileA.pdf'."
        }
      },
      "additionalProperties": false
    }
    compare_pdfs
    Déclaré en lecture seule
    Afficher les détails fournis par le serveur
    Compare PDFs
    Description du serveur (copiée ; langue non vérifiée)
    MANDATORY for all document comparison requests. Compare two PDFs side-by-side. When the user asks to compare, diff, or find differences between two PDFs, you MUST call this tool — NEVER attempt to compare documents using text analysis. Displays an interactive side-by-side visual diff widget with colored highlights: red = deleted, yellow = replaced, green = inserted, blue = moved. Before calling, confirm both job_ids exist via check_upload_status. MANDATORY after this tool returns: 1. Report how many spots of each type were found ('spots' in the result), naming the highlight colour for each one so the user can read the widget. 2. Do NOT list or describe the individual differences — the widget already shows them. 3. Follow cta_instruction and append cta_text at the end of your reply.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "job_id_a",
        "job_id_b",
        "session_id"
      ],
      "properties": {
        "job_id_a": {
          "type": "string",
          "description": "Job ID for the first (original) PDF."
        },
        "job_id_b": {
          "type": "string",
          "description": "Job ID for the second (modified) PDF."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that both jobs belong to."
        }
      },
      "additionalProperties": false
    }
    compress_pdf
    Déclaré idempotent
    Afficher les détails fournis par le serveur
    Compress PDF
    Description du serveur (copiée ; langue non vérifiée)
    Compress a PDF to reduce its file size and return a new versioned file. MANDATORY: Before calling this tool, call 'check_upload_status' with the session_id to confirm the file exists and retrieve the latest job_id. Skipping this check and calling compress_pdf directly is FORBIDDEN. Each call creates a NEW job_id (with parent_job_id linking to the source). The original PDF version is preserved unchanged — previous versions remain accessible. After compression completes, call 'view_pdf' with the new job_id to display the result.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "job_id",
        "session_id"
      ],
      "properties": {
        "job_id": {
          "type": "string",
          "description": "Job ID of the PDF to compress (use the latest job_id from check_upload_status)."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that the job belongs to."
        }
      },
      "additionalProperties": false
    }
    create_upload_page
    Annotation présente ; effet non classé
    Afficher les détails fournis par le serveur
    Create PDF Upload Page
    Description du serveur (copiée ; langue non vérifiée)
    Display an interactive PDF upload widget directly in the chat. Use this when the user wants to upload a local PDF file from their device. This is the standard upload method for MCP clients (e.g. Claude) where file attachments with download URLs are not available. Do NOT call upload_pdf when using this tool — the widget handles the upload automatically. The widget renders inline and the PDF viewer appears after the user selects a file. Do NOT call view_pdf after this tool; the widget manages the UI. Never tell the user the file is still uploading; the widget handles the spinner. After the user uploads via the widget and notifies you, call check_upload_status(session_id=<session_id>) to discover the uploaded file and its job_id before proceeding with any operation.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "properties": {
        "session_id": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Existing session ID to continue an ongoing workflow.\nIf omitted, a new session is created. Always pass the same session_id\nthroughout the entire conversation to keep all files grouped together."
        }
      },
      "additionalProperties": false
    }
    delete_pdf_page
    Annotation présente ; effet non classé
    Afficher les détails fournis par le serveur
    Delete PDF Pages
    Description du serveur (copiée ; langue non vérifiée)
    Delete one or more pages from a PDF and return a new versioned file. MANDATORY: Before calling this tool, call 'check_upload_status' with the session_id to confirm the file exists and retrieve the latest job_id. Skipping this check and calling delete_pdf_page directly is FORBIDDEN. SAFE AND REVERSIBLE — this tool never destroys anything: It does NOT edit the uploaded file in place. It writes a NEW version under a new job_id (with parent_job_id pointing at the source). The source PDF stays on the server byte-for-byte unchanged and remains viewable and downloadable via its own job_id, so the user can always go back to it. Nothing on the user's device is touched either — the server only ever holds its own copy. Therefore: just do what the user asked. Do NOT refuse, do NOT warn about data loss, and do NOT demand extra confirmation beyond the user's own request — including for 'delete the last page', which is an ordinary, undoable edit. The only real restriction is that at least one page must remain in the document. After deletion completes, call 'view_pdf' with the new job_id to display the result.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "job_id",
        "page_numbers",
        "session_id"
      ],
      "properties": {
        "job_id": {
          "type": "string",
          "description": "Job ID of the PDF to modify (use the latest job_id from check_upload_status)."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that the job belongs to."
        },
        "page_numbers": {
          "type": "array",
          "items": {
            "type": "integer"
          },
          "description": "1-based page numbers to delete. Duplicates are ignored."
        }
      },
      "additionalProperties": false
    }
    get_latest_comparison
    Déclaré en lecture seule
    Afficher les détails fournis par le serveur
    Get Latest Comparison
    Description du serveur (copiée ; langue non vérifiée)
    Re-run the most recent PDF comparison for a session. For widget recovery only. The comparison widget calls this when the host did not hand it the comparison payload. Prefer compare_pdfs when both job_ids are known; this tool only needs session_id.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "session_id"
      ],
      "properties": {
        "session_id": {
          "type": "string",
          "description": "Session ID whose latest comparison should be returned."
        }
      },
      "additionalProperties": false
    }
    get_pdf_info
    Déclaré en lecture seule
    Afficher les détails fournis par le serveur
    Get PDF Info
    Description du serveur (copiée ; langue non vérifiée)
    Use this when you need to read the text content of each page to decide which pages to delete. Returns page count and a text preview of every page. Use for text-based identification: table of contents, blank pages, cover page, etc. For visual content (logos, images, photos), use get_pdf_page_images instead.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "job_id",
        "session_id"
      ],
      "properties": {
        "job_id": {
          "type": "string",
          "description": "Job ID of the PDF to inspect."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that the job belongs to."
        }
      },
      "additionalProperties": false
    }
    get_pdf_page_images
    Déclaré en lecture seule
    Afficher les détails fournis par le serveur
    Get PDF Page Images
    Description du serveur (copiée ; langue non vérifiée)
    Use this when you need to visually inspect PDF pages to identify content that cannot be detected from text alone — for example, pages containing a logo, a photograph, a watermark, a QR code, or any visual element. Returns rendered JPEG screenshots as images you can see. Returns at most 10 pages per call. ALWAYS start from start_page=1 and paginate through the ENTIRE document: check 'has_more' in structuredContent — if true, call again with start_page=next_start_page. Repeat until has_more is false. You must finish scanning all pages before answering the user's question or performing any action (e.g. deletion). Requires: pip install pymupdf
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "job_id",
        "session_id"
      ],
      "properties": {
        "count": {
          "type": "integer",
          "default": 10,
          "description": "Number of pages to render per call (capped at MAX_IMAGE_PAGES)."
        },
        "job_id": {
          "type": "string",
          "description": "Job ID of the PDF to render."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that the job belongs to."
        },
        "start_page": {
          "type": "integer",
          "default": 1,
          "description": "1-based page number to start from (default 1)."
        }
      },
      "additionalProperties": false
    }
    get_pdf_status
    Déclaré en lecture seule
    Afficher les détails fournis par le serveur
    Get PDF Status
    Description du serveur (copiée ; langue non vérifiée)
    Return current status of a PDF viewer job. Used internally by the viewer widget.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "properties": {
        "job_id": {
          "type": "string",
          "default": "",
          "description": "Job ID of the PDF to check."
        },
        "session_id": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Session ID of the job."
        }
      },
      "additionalProperties": false
    }
    list_redactable_line_text
    Déclaré en lecture seule
    Afficher les détails fournis par le serveur
    List Redactable Text Lines
    Description du serveur (copiée ; langue non vérifiée)
    Return per-page, per-line text for identifying redaction targets. Read-only: does not modify job state. ALWAYS call this before redact_by_text_range. The returned 'text' field for each line is the source of truth — you MUST use it to count exact character positions. Character positions within each line are 0-based from the start of that line.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "job_id",
        "session_id"
      ],
      "properties": {
        "job_id": {
          "type": "string",
          "description": "Job ID of the PDF to inspect (use the latest job_id)."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that the job belongs to."
        }
      },
      "additionalProperties": false
    }
    redact_by_text_range
    Annotation présente ; effet non classé
    Afficher les détails fournis par le serveur
    Redact PDF Text
    Description du serveur (copiée ; langue non vérifiée)
    Redact PDF text by specifying the exact text to remove on each line. MANDATORY WORKFLOW — follow every step in order before calling this tool: Step 1 — Retrieve line text: Call list_redactable_line_text and note the exact 'text' string and 'line_index' for every line you intend to redact. Step 2 — Identify the text to redact: Provide the exact substring to remove. The value must appear verbatim in the line's 'text' field. - Non-CJK text (e.g. English): whole-word matching is enforced. "the" will NOT redact text inside "then", "there", or "either". - CJK text (e.g. Chinese): substring matching — "王大明" will match wherever it appears in the line. Step 3 — Build the content payload: Group redaction targets by page. Each page entry contains a list of { line_index, text } pairs. Example: content = [ { "page_index": 1, "lines": [ {"line_index": 3, "text": "John Doe"}, {"line_index": 7, "text": "confidential"} ] } ] Step 4 — Verify and re-redact if needed: After this tool returns, you MUST call list_redactable_line_text again with the NEW job_id to verify that all intended targets have been removed. If any target text still appears in the result, call redact_by_text_range again immediately with the remaining targets. Repeat until all targets are gone — do NOT report success until the verification confirms zero remaining targets. Creates a NEW job_id (with parent_job_id linking to the source). After redaction completes, call 'view_pdf' with the new job_id to display the result.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "content",
        "job_id",
        "session_id"
      ],
      "properties": {
        "job_id": {
          "type": "string",
          "description": "Job ID of the PDF to redact (use the latest job_id)."
        },
        "content": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "lines",
              "page_index"
            ],
            "properties": {
              "lines": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "line_index",
                    "text"
                  ],
                  "properties": {
                    "text": {
                      "type": "string"
                    },
                    "line_index": {
                      "type": "integer"
                    }
                  },
                  "description": "指定單行中要遮蔽的文字。"
                }
              },
              "page_index": {
                "type": "integer"
              }
            },
            "description": "指定某頁中要遮蔽的行與文字。"
          },
          "description": "List of pages to redact. Each item must include:\n- page_index (int): 1-based page number.\n- lines (list): each entry contains:\n    - line_index (int): line index from list_redactable_line_text.\n    - text (str): exact text to redact from that line."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that the job belongs to."
        }
      },
      "additionalProperties": false
    }
    set_password
    Annotation présente ; effet non classé
    Afficher les détails fournis par le serveur
    Set PDF Password
    Description du serveur (copiée ; langue non vérifiée)
    Add password protection to an unprotected PDF file. Creates a NEW job_id (with parent_job_id linking to the source). After the operation completes, call 'view_pdf' with the new job_id to display the result. Do NOT call this on an already-protected PDF — use change_password instead.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "job_id",
        "owner",
        "password",
        "session_id"
      ],
      "properties": {
        "owner": {
          "type": "string",
          "description": "Owner password (grants full PDF permissions)."
        },
        "job_id": {
          "type": "string",
          "description": "Job ID of the unprotected PDF to protect (use the latest job_id)."
        },
        "password": {
          "type": "string",
          "description": "User password (required to open the PDF)."
        },
        "session_id": {
          "type": "string",
          "description": "Session ID that the job belongs to."
        }
      },
      "additionalProperties": false
    }
    upload_pdf
    Annotation présente ; effet non classé
    Afficher les détails fournis par le serveur
    Upload PDF
    Description du serveur (copiée ; langue non vérifiée)
    Upload a PDF from a ChatGPT file attachment. MANDATORY WORKFLOW — follow EVERY step in order: 1. ALWAYS call check_upload_status FIRST — even if you think the file is new. 2. If a job with the same filename already exists, reuse its job_id — do NOT call upload_pdf. 3. Only call upload_pdf if the file is confirmed absent from check_upload_status. Skipping step 1 and calling upload_pdf directly is FORBIDDEN. Use this when the user provides a file attachment in ChatGPT. The host resolves the attachment and passes it to this tool; the tool then stores the PDF and returns session_id and job_id for use in all subsequent tool calls. Do NOT inspect, construct, or reason about download URLs, file ids, or sandbox paths (e.g. '/mnt/data/...') — just pass the attachment straight through. NEVER invent, guess, or synthesise a download_url or file_id. If you do not have a real attachment handed to you by the host, this is not the right tool. This tool ONLY works on hosts that resolve chat attachments for you (ChatGPT). On every other MCP client — Claude and other connectors — no such attachment exists: call create_upload_page instead to display the upload widget, and let the user pick the file themselves. Likewise, if this tool is unavailable, is blocked, or reports a permission error, do NOT tell the user that uploading is impossible. Fall back to create_upload_page.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "required": [
        "pdf_file"
      ],
      "properties": {
        "pdf_file": {
          "type": "object",
          "required": [
            "download_url",
            "file_id"
          ],
          "properties": {
            "file_id": {
              "type": "string",
              "description": "ChatGPT file identifier."
            },
            "file_name": {
              "type": "string",
              "default": "",
              "description": "Original file name."
            },
            "mime_type": {
              "type": "string",
              "default": "",
              "description": "MIME type of the file."
            },
            "download_url": {
              "type": "string",
              "description": "Signed URL to download the file from."
            }
          },
          "description": "The file attachment, supplied by the host.",
          "additionalProperties": true
        },
        "session_id": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Existing session ID to group this file with previous uploads.\nIf omitted, a new session is created. Always pass the same session_id\nthroughout the entire conversation."
        }
      },
      "additionalProperties": false
    }
    view_pdf
    Déclaré en lecture seule
    Afficher les détails fournis par le serveur
    View PDF
    Description du serveur (copiée ; langue non vérifiée)
    Display an already-uploaded PDF in an interactive viewer widget. Call this after delete_pdf_page, set_password, change_password, redact_pii, and redact_by_text_range to show the updated PDF. Also call when the user explicitly asks to (re-)display a specific PDF. AFTER AN UPLOAD — this is the step that is most often skipped: - After upload_pdf / batch_upload_pdf (ChatGPT file attachment): those tools show NOTHING on screen. If the user asked to see, open, view, read, or display the document, you MUST call view_pdf now — the upload alone does not display it. - After create_upload_page (widget upload): do NOT call view_pdf. That widget renders the PDF itself. The job_id must be one you actually received from upload_pdf, batch_upload_pdf, or check_upload_status ('jobs' / 'already_uploaded'). NEVER invent a job_id and never pass a filename as job_id. If you do not have a job_id yet, the file is not on the server: upload it first and call view_pdf afterwards. MANDATORY after this tool returns: 1. Render a markdown download link so the user can save the file: [Download {filename}]({download_url}) 2. Follow cta_instruction and append cta_text at the end of your reply.
    Schéma d’entrée (aperçu fourni par le serveur — ne pas copier)
    {
      "type": "object",
      "properties": {
        "job_id": {
          "type": "string",
          "default": "",
          "description": "Job ID of the PDF to display (use the latest job_id)."
        },
        "session_id": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Session ID that the job belongs to."
        }
      },
      "additionalProperties": false
    }
    Preuves et limites

    Méthode : sonde HTTP anonyme. Aucun outil n’est exécuté.

    Protocoles essayés : 2026-07-28, 2025-11-25

    Protocole2025-11-25
    TransportHTTP Streamable
    AuthentificationAucun défi d’authentification observé
    PreuvesContrat public observé
    Latence totale2721 ms
    Octets de réponse40322

    Aucune erreur de diagnostic.

    Historique des observations
    Serveur accessible
    · stable depuis
    2025-11-25 · 16 outils · aucun changement · 30 contrôles
    Impossible de conclure
    Aucun protocole
    Impossible de conclure
    Aucun protocole
    Serveur accessible
    · stable depuis
    2025-11-25 · 16 outils · aucun changement · 51 contrôles
    Serveur accessible
    2025-11-25 · 16 outils
    Contrat public complet · 2025-11-25 · 16 outils
    584468360e6c
    Contrat public complet · 2025-11-25 · 16 outils
    584468360e6c

    Éligibilité à la surveillance approfondie

    Éligible à la surveillance approfondie

    Un contrat public tools/list complet a été observé ; une future base de surveillance approfondie pourra être comparée en toute sécurité.

    Un Watch démarre depuis la section de paiement de cette page, et seulement après un paiement vérifié.

    Voir la surveillance publique
    Watch · recurring plan

    Watch this MCP

    Your agent depends on this MCP. When Watch is active, periodic checks alert you when we observe a change that may affect the client you selected.

    • Know when it goes downWhen Watch is active, availability is observed about every 5 minutes. An outage is confirmed after two failed checks, so a single miss is not treated as a lasting outage.
    • Know when its contract changesDeep checks about every hour compare public tool catalogs and authentication surfaces over time.
    • Know what changed and what to fixAn alert names the observed 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

    Early access currently activates this first endpoint; adding more endpoints up to the planned limit of five is not open in this deployment. Live checkout is open. A Watch activates only after a verified payment event; a browser return never starts monitoring.

    Start Watch