PDF Editor PRO by Playgram
by Playgram (Community)
Description
Easily edit, annotate, and sign PDF documents right in your browser. PDF Editor Pro lets you modify text, add images, highlight important sections, and edit PDFs using simple text prompts. Key features: * Edit text and images directly in PDFs * Edit PDFs using AI-powered prompts (just describe what you want to change) * Add annotations, comments, and highlights * Sign documents with your signature * Fill and save PDF forms * Merge and split PDF files * Convert PDFs to other formats * Password protect sensitive documents Perfect for students, professionals, and anyone who works with PDFs daily. No installation required - start editing immediately with our intuitive interface. Your documents are processed securely and never stored on our servers.
Capabilities
No special capabilities listed
AI Agent Discovery
PDF Editor PRO by Playgram is indexed by Tedix as a structured productivity listing for AI assistants, search crawlers, and users comparing agent-ready apps.
- PDF Editor PRO by Playgram is categorized as Productivity.
- Developer: Playgram.
- Connector type: AI-Powered App.
- Current connector status: Connected.
- Observed distribution channels: chatgpt.
- Available regions: US, FR, GB, ES, KR, IN.
Use this page to understand whether PDF Editor PRO by Playgram is relevant for productivity workflows in AI assistants.
For MCP discovery, this listing helps crawlers connect PDF Editor PRO by Playgram to tool, resource, prompt, and server-health signals instead of treating it as a generic directory entry.
The canonical Tedix directory URL is https://tedix.dev/apps/pdf-editor-pro-by-playgram/.
Crawlable Profile
Source and availability
Tedix identifies PDF Editor PRO by Playgram from Upstream Mcp tool source; Store sources: ChatGPT app store; Distribution: Ecosystem Directory. Availability is reported for US, FR, GB, ES, KR, IN.
- ChatGPT app store Auth not flagged · RELEASED · US, FR, GB, ES, KR, IN
Auth, tools, and actions
Authentication: Open Access. No special capability flags are currently listed. Current MCP inventory reports 5 tools, 1 resources, and 0 prompts.
- decrypt_pdf_with_password · App action
Use this when the user wants to unlock a password-protected PDF and remove its encryption. The user must supply the correct user/owner password. Outputs an unprotected PDF and returns a direct download URL — you MUST include this URL verbatim in your reply (do not paraphrase as "download from widget"). How to provide the source PDF (in priority order): 1. `pdfFile` — PDF attached by the user in the chat. ChatGPT auto-populates this; prefer it on the first call. 2. `fileId` — server-side ID returned by a previous tool call. 3. `fileData` + `fileName` — base64 payload (used by the widget). Do NOT use when: - The user wants to ADD a password — use `encrypt_pdf_with_password` instead. - The password is unknown to the user — this tool requires the correct password; do not attempt to brute-force or guess. - The PDF only has owner-permissions (no user password) — use `edit_pdf_with_prompt` with operationType `add_permissions` to manage those.
- edit_pdf_with_prompt · High-impact write action
Use this when the user wants to perform a structural PDF operation: rotate, delete, reorder, extract, duplicate, insert blank pages, resize, scale, add page numbers, compress, convert to grayscale, remove images, add permissions, or remove metadata. Returns a direct download URL — you MUST include this URL verbatim in your reply (do not paraphrase as "download from widget"). How to provide the source PDF (in priority order): 1. `pdfFile` — PDF attached by the user in the chat. Prefer this on the FIRST operation. 2. `fileId` — server-side ID returned by a previous tool call. Use this for chained operations (rotate → compress → ...) so the same document is mutated step by step. Operations and the parameters they need: - `rotate`: pages, angle (90 | 180 | 270). Example: "rotate page 2 by 90°". - `delete`: pages. Example: "delete pages 2,4,5". - `reorder`: newOrder (array containing every page number exactly once, NOT the `pages` field). Example: 3-page PDF reordered as [3,1,2]. - `extract`: pages. Example: "extract pages 1-5". - `duplicate`: pages, optional position (`after`). - `insert_blank`: optional position (1-based, omit to append), optional size (A3/A4/A5/A6/B4/B5/Letter/Legal/Tabloid or "WIDTHxHEIGHT" in points). - `resize`: pages, size (same vocabulary as insert_blank). - `scale`: pages, factor (percentage; 150 = 1.5×). - `add_page_numbers`: pages, format ("{n}", "Page {n} of {total}", etc.), optional position (top-center | bottom-center | bottom-right), fontSize, color. - `compress`: quality (screen | ebook | printer | prepress). Affects entire document. - `grayscale`: no extra params. - `remove_images`: no extra params. - `add_permissions`: permissions object { password, print, modify, extract }. - `remove_metadata`: no extra params. `pages` accepts: comma-separated ("1,3,5"), range ("1-5"), single page ("3"), or "all". Do NOT use when: - The user just wants to view or annotate the PDF visually — use `open_pdf_editor`. - The user wants to set or remove a master password — use `encrypt_pdf_with_password` / `decrypt_pdf_with_password` (this tool's `add_permissions` is for owner-level restrictions, not for protecting access). - The user asks for an operation outside the supported list above (e.g. OCR, form filling, redaction) — those are not implemented here. Note: this operation REPLACES the PDF stored under `fileId` with the result, so destructive ops (delete, remove_images, remove_metadata) are irreversible without re-uploading the original.
- encrypt_pdf_with_password · App action
Use this when the user wants to password-protect a PDF, add encryption, or restrict actions on it (printing, copying, editing). Outputs a new encrypted PDF and returns a direct download URL — you MUST include this URL verbatim in your reply (do not paraphrase as "download from widget"). How to provide the source PDF (in priority order): 1. `pdfFile` — PDF attached by the user in the chat. ChatGPT auto-populates this; prefer it on the first call. 2. `fileId` — server-side ID returned by a previous tool call (use for chaining). 3. `fileData` + `fileName` — base64 payload (used by the widget when it has the bytes locally). Defaults: 256-bit AES, all permissions allowed unless restrictions are specified. The original PDF is preserved (a new file is created with suffix `_encrypted.pdf`). Do NOT use when: - The user wants to remove a password — use `decrypt_pdf_with_password` instead. - The user wants to add a digital signature or watermark — use the editor (`open_pdf_editor`) for those. - No password is provided in the request — ask the user for one first instead of guessing.
- export_file_from_widget · App action
Internal tool — invoked only by the PDF Editor widget when the user clicks Save/Export. Stores a base64 payload from the widget into the server's fileStore so it can be downloaded via /download/<fileId>. Not for GPT use; this tool is hidden from the model via openai/visibility=private.
- open_pdf_editor · App action
Use this when the user wants to open the visual PDF editor — to view a PDF, draw/highlight/annotate, or visually inspect the result of a previous edit. When a PDF is attached to the chat, ChatGPT will auto-populate `pdfFile` and the editor opens with the PDF already loaded. When chaining after another tool (e.g. edit_pdf_with_prompt), pass the returned `fileId` to display the result. Otherwise the editor opens empty and the user can upload via the widget. Do NOT use when: - The user is asking conceptual questions about PDFs (do not open a widget for FAQ-style queries). - The user wants a server-side operation (encrypt, decrypt, rotate, compress, etc.) — call the matching tool directly; opening the editor first is unnecessary. - The user is asking about the tool's JSON schema or capabilities. Editor capabilities exposed inside the widget: text/draw/highlight annotations, redaction, signatures, watermarks, page management (merge/split/delete/extract/rotate/reorder), and export (PDF/PNG/JPG/TXT).
Verification freshness
- Catalog synced 1d ago (June 5, 2026)
- Connector checked May 30, 2026
- MCP scanned May 30, 2026
- Website enriched May 28, 2026
- Directory updated 1d ago (June 5, 2026)
Alternatives and related apps
Comparable apps in Productivity include AI Voice Generator, AI Wisebase, AWS Marketplace, AccurateScribe.ai – Transcribe.
Publisher Intelligence
Insights and recommendations for app publishers. See how your app performs and how to improve discoverability.
Server Status pdf-editor-by-playgram-app v1.0.0
https://gpt.mojju.dev/pdf/mcp Last checked: May 30, 2026
Technical Details
Tools(5)
Showing 5 of 5 tools
| Tool | Description | Flags | Test | Last Tested | |
|---|---|---|---|---|---|
decrypt_pdf_with_password | Use this when the user wants to unlock a password-protected PDF and remove its encryption. The user must supply the correct user/owner password. Outputs an unprotected PDF and returns a direct download URL — you MUST include this URL verbatim in your reply (do not paraphrase as "download from widget"). How to provide the source PDF (in priority order): 1. `pdfFile` — PDF attached by the user in the chat. ChatGPT auto-populates this; prefer it on the first call. 2. `fileId` — server-side ID returned by a previous tool call. 3. `fileData` + `fileName` — base64 payload (used by the widget). Do NOT use when: - The user wants to ADD a password — use `encrypt_pdf_with_password` instead. - The password is unknown to the user — this tool requires the correct password; do not attempt to brute-force or guess. - The PDF only has owner-permissions (no user password) — use `edit_pdf_with_prompt` with operationType `add_permissions` to manage those. | — | 100%Latency 383ms | May 29, 2026 | |
edit_pdf_with_prompt | Use this when the user wants to perform a structural PDF operation: rotate, delete, reorder, extract, duplicate, insert blank pages, resize, scale, add page numbers, compress, convert to grayscale, remove images, add permissions, or remove metadata. Returns a direct download URL — you MUST include this URL verbatim in your reply (do not paraphrase as "download from widget"). How to provide the source PDF (in priority order): 1. `pdfFile` — PDF attached by the user in the chat. Prefer this on the FIRST operation. 2. `fileId` — server-side ID returned by a previous tool call. Use this for chained operations (rotate → compress → ...) so the same document is mutated step by step. Operations and the parameters they need: - `rotate`: pages, angle (90 | 180 | 270). Example: "rotate page 2 by 90°". - `delete`: pages. Example: "delete pages 2,4,5". - `reorder`: newOrder (array containing every page number exactly once, NOT the `pages` field). Example: 3-page PDF reordered as [3,1,2]. - `extract`: pages. Example: "extract pages 1-5". - `duplicate`: pages, optional position (`after`). - `insert_blank`: optional position (1-based, omit to append), optional size (A3/A4/A5/A6/B4/B5/Letter/Legal/Tabloid or "WIDTHxHEIGHT" in points). - `resize`: pages, size (same vocabulary as insert_blank). - `scale`: pages, factor (percentage; 150 = 1.5×). - `add_page_numbers`: pages, format ("{n}", "Page {n} of {total}", etc.), optional position (top-center | bottom-center | bottom-right), fontSize, color. - `compress`: quality (screen | ebook | printer | prepress). Affects entire document. - `grayscale`: no extra params. - `remove_images`: no extra params. - `add_permissions`: permissions object { password, print, modify, extract }. - `remove_metadata`: no extra params. `pages` accepts: comma-separated ("1,3,5"), range ("1-5"), single page ("3"), or "all". Do NOT use when: - The user just wants to view or annotate the PDF visually — use `open_pdf_editor`. - The user wants to set or remove a master password — use `encrypt_pdf_with_password` / `decrypt_pdf_with_password` (this tool's `add_permissions` is for owner-level restrictions, not for protecting access). - The user asks for an operation outside the supported list above (e.g. OCR, form filling, redaction) — those are not implemented here. Note: this operation REPLACES the PDF stored under `fileId` with the result, so destructive ops (delete, remove_images, remove_metadata) are irreversible without re-uploading the original. | destructive | 100%Latency 184ms | May 29, 2026 | |
encrypt_pdf_with_password | Use this when the user wants to password-protect a PDF, add encryption, or restrict actions on it (printing, copying, editing). Outputs a new encrypted PDF and returns a direct download URL — you MUST include this URL verbatim in your reply (do not paraphrase as "download from widget"). How to provide the source PDF (in priority order): 1. `pdfFile` — PDF attached by the user in the chat. ChatGPT auto-populates this; prefer it on the first call. 2. `fileId` — server-side ID returned by a previous tool call (use for chaining). 3. `fileData` + `fileName` — base64 payload (used by the widget when it has the bytes locally). Defaults: 256-bit AES, all permissions allowed unless restrictions are specified. The original PDF is preserved (a new file is created with suffix `_encrypted.pdf`). Do NOT use when: - The user wants to remove a password — use `decrypt_pdf_with_password` instead. - The user wants to add a digital signature or watermark — use the editor (`open_pdf_editor`) for those. - No password is provided in the request — ask the user for one first instead of guessing. | — | 100%Latency 184ms | May 29, 2026 | |
export_file_from_widget | Internal tool — invoked only by the PDF Editor widget when the user clicks Save/Export. Stores a base64 payload from the widget into the server's fileStore so it can be downloaded via /download/<fileId>. Not for GPT use; this tool is hidden from the model via openai/visibility=private. | — | 100%Latency 193ms | May 29, 2026 | |
open_pdf_editor | Use this when the user wants to open the visual PDF editor — to view a PDF, draw/highlight/annotate, or visually inspect the result of a previous edit. When a PDF is attached to the chat, ChatGPT will auto-populate `pdfFile` and the editor opens with the PDF already loaded. When chaining after another tool (e.g. edit_pdf_with_prompt), pass the returned `fileId` to display the result. Otherwise the editor opens empty and the user can upload via the widget. Do NOT use when: - The user is asking conceptual questions about PDFs (do not open a widget for FAQ-style queries). - The user wants a server-side operation (encrypt, decrypt, rotate, compress, etc.) — call the matching tool directly; opening the editor first is unnecessary. - The user is asking about the tool's JSON schema or capabilities. Editor capabilities exposed inside the widget: text/draw/highlight annotations, redaction, signatures, watermarks, page management (merge/split/delete/extract/rotate/reorder), and export (PDF/PNG/JPG/TXT). | — | 100%Latency 186ms | May 29, 2026 |
Discoverability Score
Fair
65 of 100 — how easily AI agents find your app
- Description quality20/20
- Example prompts0/20
- Keyword coverage0/15
- Tool metadata20/20
- Visual assets13/20
- Endpoint health10/10
- Data freshness15/15
How to Improve
Add at least 2 example prompts. Prompt examples strongly improve app matching and click-through intent.
Increase keyword coverage (discovery + trigger) to improve retrieval for long-tail queries.
Add at least 2 screenshots that show real workflows to increase confidence and conversion.
Technical Details
- Status
- ENABLED
- Type
- AI-Powered App
- Auth
- Open Access
- Listed on
- ChatGPT
- Added
- May 9, 2026
- Last synced
- 1d ago
- Last checked
- May 30, 2026
- Version
- 1.0.0
- Distribution
- Ecosystem Directory