_ registry / mcp http-sse · checked 11h ago

EasyPDF

https://www.easypdf.fr

Registry code: 67179ba8a94e96b0

api record

EasyPDF edits PDF files shared in the conversation: compress, merge, split, extract pages, rotate, protect or unlock with a password, add page numbers. Ask the user to attach the PDF, then call the matching tool with the file. Every tool returns a download link valid for one hour; show it to the user as a clickable link.

endpoint
https://www.easypdf.fr/chatgpt/mcp
protocol
http-sse ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
108ms

last good check

priced tools
0

of 8 tools

_ answered our checks, 90 days 1 checks · signed record
  • unknown → live
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 8 tools
8 never probed 0 of 8 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • extract_pages unknown never probed

    Extract specific pages from a PDF into a new PDF (pages are 1-indexed).

    mcp-tool

    {
      "type": "object",
      "required": [
        "file",
        "page_numbers"
      ],
      "properties": {
        "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, e.g. report.pdf."
            },
            "mime_type": {
              "type": "string",
              "default": "",
              "description": "MIME type of the file, e.g. application/pdf."
            },
            "download_url": {
              "type": "string",
              "description": "URL from which the file can be downloaded."
            }
          },
          "description": "The source PDF."
        },
        "page_numbers": {
          "type": "array",
          "items": {
            "type": "integer"
          },
          "description": "Pages to keep, e.g. [1, 3, 5]. Order is preserved."
        }
      },
      "additionalProperties": false
    }
    arguments 45 lines
  • add_page_numbers unknown never probed

    Add page numbers to a PDF.

    mcp-tool

    {
      "type": "object",
      "required": [
        "file"
      ],
      "properties": {
        "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, e.g. report.pdf."
            },
            "mime_type": {
              "type": "string",
              "default": "",
              "description": "MIME type of the file, e.g. application/pdf."
            },
            "download_url": {
              "type": "string",
              "description": "URL from which the file can be downloaded."
            }
          },
          "description": "The PDF to number."
        },
        "position": {
          "type": "string",
          "default": "bottom-center",
          "description": "\"bottom-center\" (default), \"bottom-left\", \"bottom-right\", \"top-center\", \"top-left\" or \"top-right\"."
        },
        "start_number": {
          "type": "integer",
          "default": 1,
          "description": "Number printed on the first page. Default 1."
        }
      },
      "additionalProperties": false
    }
    arguments 47 lines
  • rotate_pdf unknown never probed

    Rotate all pages, or selected pages, of a PDF.

    mcp-tool

    {
      "type": "object",
      "required": [
        "file",
        "angle"
      ],
      "properties": {
        "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, e.g. report.pdf."
            },
            "mime_type": {
              "type": "string",
              "default": "",
              "description": "MIME type of the file, e.g. application/pdf."
            },
            "download_url": {
              "type": "string",
              "description": "URL from which the file can be downloaded."
            }
          },
          "description": "The PDF to rotate."
        },
        "angle": {
          "type": "integer",
          "description": "90, 180 or 270 degrees (clockwise)."
        },
        "pages": {
          "anyOf": [
            {
              "type": "array",
              "items": {
                "type": "integer"
              }
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Optional 1-indexed page numbers to rotate; omit to rotate every page."
        }
      },
      "additionalProperties": false
    }
    arguments 57 lines
  • protect_pdf unknown never probed

    Protect a PDF with a password (AES-256 encryption).

    mcp-tool

    {
      "type": "object",
      "required": [
        "file",
        "password"
      ],
      "properties": {
        "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, e.g. report.pdf."
            },
            "mime_type": {
              "type": "string",
              "default": "",
              "description": "MIME type of the file, e.g. application/pdf."
            },
            "download_url": {
              "type": "string",
              "description": "URL from which the file can be downloaded."
            }
          },
          "description": "The PDF to protect."
        },
        "password": {
          "type": "string",
          "description": "Password that will be required to open the PDF."
        }
      },
      "additionalProperties": false
    }
    arguments 42 lines
  • unlock_pdf unknown never probed

    Remove the password protection from a PDF you own.

    mcp-tool

    {
      "type": "object",
      "required": [
        "file",
        "password"
      ],
      "properties": {
        "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, e.g. report.pdf."
            },
            "mime_type": {
              "type": "string",
              "default": "",
              "description": "MIME type of the file, e.g. application/pdf."
            },
            "download_url": {
              "type": "string",
              "description": "URL from which the file can be downloaded."
            }
          },
          "description": "The password-protected PDF."
        },
        "password": {
          "type": "string",
          "description": "Its current password."
        }
      },
      "additionalProperties": false
    }
    arguments 42 lines
  • compress_pdf unknown never probed

    Compress a PDF to reduce its file size while keeping it readable.

    mcp-tool

    {
      "type": "object",
      "required": [
        "file"
      ],
      "properties": {
        "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, e.g. report.pdf."
            },
            "mime_type": {
              "type": "string",
              "default": "",
              "description": "MIME type of the file, e.g. application/pdf."
            },
            "download_url": {
              "type": "string",
              "description": "URL from which the file can be downloaded."
            }
          },
          "description": "The PDF to compress (shared in the conversation)."
        },
        "quality": {
          "type": "string",
          "default": "medium",
          "description": "\"low\" (smallest file), \"medium\" (balanced, default) or \"high\" (best visual quality)."
        }
      },
      "additionalProperties": false
    }
    arguments 42 lines
  • merge_pdfs unknown never probed

    Merge several PDF files into a single document, in the given order.

    mcp-tool

    {
      "type": "object",
      "required": [
        "files"
      ],
      "properties": {
        "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, e.g. report.pdf."
              },
              "mime_type": {
                "type": "string",
                "default": "",
                "description": "MIME type of the file, e.g. application/pdf."
              },
              "download_url": {
                "type": "string",
                "description": "URL from which the file can be downloaded."
              }
            },
            "description": "A file shared in the ChatGPT conversation (user upload)."
          },
          "description": "Two or more PDFs shared in the conversation, in the order to merge them."
        }
      },
      "additionalProperties": false
    }
    arguments 41 lines
  • split_pdf unknown never probed

    Split a PDF into several smaller PDFs.

    mcp-tool

    {
      "type": "object",
      "required": [
        "file"
      ],
      "properties": {
        "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, e.g. report.pdf."
            },
            "mime_type": {
              "type": "string",
              "default": "",
              "description": "MIME type of the file, e.g. application/pdf."
            },
            "download_url": {
              "type": "string",
              "description": "URL from which the file can be downloaded."
            }
          },
          "description": "The PDF to split."
        },
        "pages_per_file": {
          "type": "integer",
          "default": 1,
          "description": "Number of pages in each output file (default 1: one file per page)."
        }
      },
      "additionalProperties": false
    }
    arguments 42 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/67179ba8a94e96b0/badge.svg)](https://brick.blue/agent/67179ba8a94e96b0)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
100%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.