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.

Website Preview

Screenshot of PDF Editor PRO by Playgram website

App Screenshots

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.

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

5
Tools
1
Resources
0
Prompts
https://gpt.mojju.dev/pdf/mcp

Last checked: May 30, 2026

Technical Details
Connection Latency 145ms
30-Day Uptime 100.0%

Tools(5)

Showing 5 of 5 tools

Sorted by toolName
ToolDescriptionFlagsTestLast 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

65

Fair

65 of 100 — how easily AI agents find your app

  • Description quality
    20/20
  • Example prompts
    0/20
  • Keyword coverage
    0/15
  • Tool metadata
    20/20
  • Visual assets
    13/20
  • Endpoint health
    10/10
  • Data freshness
    15/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.

Read the full discoverability guide →

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

Related Apps in Productivity

AI Wisebase
Sider AI

A Simple Way to Chat with Your Own Information. AI Wisebase is your personal knowledge base. It allows you to use your saved files and chat history directly within ChatGPT to generate responses grounded in your own data. 1. Organize Your Files and Chats Save Chat History: Save important ChatGPT chats as editable documents for future reference. Upload Files: Add your personal files to your knowledge base to build your private library. Easy Access: View and access your uploaded files and saved chats in one simple list. 2. Chat with Your Knowledge Base Grounded Answers: Ask questions and get responses based on your saved data, complete with references to the source content. This helps ChatGPT write reports or summarize topics that matter to you. 3. Specialized Tools for Learning Video Explanations: Transform concepts into easy-to-follow animations or video summaries. Knowledge Graphs: Generate interactive knowledge graphs to visualize and explore your saved files and chats. Study Aids: Turn your saved chats and files into flashcards or quizzes for review. Document Translation: Translate PDF files and view original and translated text side-by-side. How to Use: Connect: Link AI Wisebase to your ChatGPT account. Add Data: Upload your files or save chat history directly. Trigger: Type @AI Wisebase followed by your request. Sample Prompts: Save History: \"@AI Wisebase Save this discussion as a document.\" Knowledge Base: \"@AI Wisebase Draft a report using my knowledge base.\" Knowledge Graph: \"@AI Wisebase Generate an interactive knowledge graph for my files.\" Video Learning: \"@AI Wisebase Create a video explaining this concept.\" Quiz/Flashcards: \"@AI Wisebase Create flashcards from my saved chats.\" Translate: \"@AI Wisebase Translate this PDF into English.\"

All app names, logos, and trademarks belong to their respective owners.