fixmypdf
Server Details
Privacy-first PDF tools over MCP: merge, split, rotate, delete, compress, protect, inspect.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 7 of 7 tools scored. Lowest: 3.3/5.
Each tool has a clearly distinct purpose: compress, delete pages, get info, merge, protect, rotate, split. There is no overlap between them.
All tool names follow a consistent verb_noun pattern in snake_case, making them predictable and easy to understand.
With 7 tools, the server covers essential PDF operations without being too sparse or overwhelming. The scope is well-calibrated for a PDF utility.
The tools cover core PDF manipulations (compression, page management, merging, protection, rotation, splitting). Minor gaps like page insertion or reordering exist, but the set is largely complete for common tasks.
Available Tools
7 toolscompress_pdfAInspect
Reduce a PDF's file size losslessly by consolidating object streams (keeps text selectable). Returns base64 plus before/after sizes. Note: does not re-encode embedded images.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The PDF as a base64 string or https URL. | ||
| level | No | medium also strips subject/keywords metadata. Default medium. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries full burden. It discloses the lossless method, preservation of text selectability, return format (base64 + sizes), and that images are not re-encoded. It also mentions the level parameter's effect on metadata. Absent are details on side effects or permissions, but for a compression tool this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient paragraph with no wasted words. Front-loaded with the main action and key points, it conveys necessary information in two sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With moderate tool complexity, 2 parameters, and no output schema, the description covers return value and key behavioral aspects (lossless, no image re-encoding). It lacks mention of error handling or limitations (e.g., large files), but is fairly complete for its purpose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already describes both parameters. The description does not add extra meaning beyond the schema; it only mentions the default level indirectly via 'medium' behavior already in schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (compress a PDF), the method (losslessly by consolidating object streams), and the resource (PDF files). It distinguishes from sibling tools like delete_pages or get_pdf_info by focusing on compression, making it easy for an agent to select the correct tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for lossless compression where text must remain selectable, and notes that embedded images are not re-encoded. However, it does not explicitly state when to use this tool versus alternatives among siblings (e.g., for image-heavy PDFs). No when-not guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_pagesBInspect
Remove specific pages from a PDF by their 1-based page numbers, keeping the rest in order. Returns base64.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The PDF as a base64 string or https URL. | ||
| pages | Yes | 1-based page numbers to delete. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must fully cover behavioral traits. It discloses output format (base64) and that remaining pages stay in order, but lacks details on side effects, error conditions, permissions, or size limits. For a deletion operation, more disclosure is expected.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero wasted words. Concise and front-loaded with the core action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 params, no output schema), the description is adequate but lacks usage guidance and behavioral depth. Completeness is marginal.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds that page numbers are 1-based and output is base64, which marginally supplements the schema but does not significantly enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool removes specific pages from a PDF using 1-based page numbers. This distinguishes it from siblings like merge, split, rotate, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like split_pdf or compress_pdf. The description does not help the agent decide between tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_pdf_infoAInspect
Read-only. Return a PDF's page count and per-page dimensions (in points). Use this first to plan a split or rotate.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The PDF as a base64 string or an https URL. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description states 'Read-only', disclosing that the tool does not modify the PDF. Without annotations, the description carries full burden, and it adequately conveys the non-destructive nature. It does not cover error handling or rate limits, but the read-only assertion is sufficient for this simple tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise at two sentences, with the most critical information (read-only, return value) front-loaded. Every sentence serves a purpose with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (single parameter, no output schema), the description adequately covers what the tool does and a primary use case. It could mention output structure or error scenarios, but overall it is sufficiently complete for an agent to understand tool behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the baseline is 3. The description does not add additional meaning beyond the schema's description of the 'pdf' parameter (base64 string or URL). No extra usage details or constraints are provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a PDF's page count and per-page dimensions, specifying the verb 'Return' and resource 'PDF's page count and dimensions'. It distinguishes from sibling tools by suggesting use before split or rotate, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use the tool ('Use this first to plan a split or rotate'), indicating it is a precursor to modification operations. It does not explicitly state when not to use it or mention alternatives, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
merge_pdfAInspect
Merge two or more PDFs into one, in the order given. Returns the merged PDF as base64.
| Name | Required | Description | Default |
|---|---|---|---|
| pdfs | Yes | Ordered list of PDFs, each a base64 string or https URL. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It only mentions input format and output as base64 but lacks details on potential side effects, error handling, size limits, or performance implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that conveys all necessary information without redundancy. It is well-structured and front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple merge operation with one parameter and no output schema, the description adequately covers input, order, and output format. However, it could mention error conditions or required valid PDF data.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes the parameter 'pdfs' as an array of strings with minItems 2 and a description of acceptable formats. The description adds no additional meaning beyond the schema, resulting in a baseline score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the action (merge), resource (PDFs), number of inputs (two or more), order (in the order given), and output format (base64). It distinguishes merge from sibling tools like compress_pdf or split_pdf.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states to use when merging PDFs in a given order but does not provide explicit when-not-to-use or alternatives. The sibling tools are listed but not referenced, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
protect_pdfAInspect
Encrypt a PDF with a password (AES). The result requires the password to open. Returns base64.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The PDF as a base64 string or https URL. | ||
| password | Yes | Password required to open the output PDF. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses AES encryption, output requiring password, and base64 return. However, it does not mention if original PDF is modified, any side effects, or authentication needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two efficient sentences, front-loaded with purpose, no wasted words. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple encryption tool with 2 params and no output schema, the description covers the essential behavior and return format. Lacks error conditions or comparative context with siblings, but overall sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with clear descriptions for both parameters. The description adds only minor context (AES, base64) beyond schema. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it encrypts a PDF with a password using AES, and the output requires the password to open. This verb+resource+algorithm combination distinguishes it from sibling tools like compress_pdf or merge_pdf.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly state when to use this tool versus alternatives. It implies usage when password protection is needed, but lacks when-not-to-use or pre/post conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rotate_pdfAInspect
Rotate pages of a PDF clockwise by 90, 180, or 270 degrees. Omit "pages" to rotate every page; otherwise pass 1-based page numbers. Returns base64.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The PDF as a base64 string or https URL. | ||
| pages | No | Optional 1-based page numbers to rotate; omit for all pages. | |
| degrees | Yes | Clockwise rotation to add. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses rotation direction (clockwise), allowed degrees, page selection behavior, and return format (base64). Lacks details on error handling or side effects but covers the core behavior well.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences covering the action, optional parameter behavior, and return value. No redundant or unnecessary text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 3 parameters with full schema coverage, no output schema, and sibling tools, the description covers the essential operations and return type. Could be improved by noting output format constraints or typical use cases, but overall adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds no new information beyond what the schema already provides (e.g., 'pages' behavior is identical in description and schema). No additional parameter insights.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies the action ('Rotate'), resource ('pages of a PDF'), and the degrees available (90, 180, 270). It distinguishes this tool from siblings like compress_pdf or split_pdf by focusing exclusively on rotation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance on when to use (rotating PDF pages) and how to use the 'pages' parameter (omit for all pages, pass 1-based numbers for specific pages). No explicit exclusion of alternatives, but context makes it clear this is the rotation tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
split_pdfAInspect
Extract an inclusive, 1-based page range from a PDF into a new PDF. e.g. from=5,to=10 keeps pages 5–10. Returns base64.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Last page to keep (1-based, inclusive). | |
| Yes | The PDF as a base64 string or https URL. | ||
| from | Yes | First page to keep (1-based, inclusive). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must convey behavioral traits. It states the tool returns base64 and implies creation of a new PDF, but it does not specify whether the original PDF is preserved, whether the operation is safe/read-only, or any side effects. More transparency would be beneficial.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: one sentence plus an example. Every part is functional—action, resource, range specification, example, return type. No unnecessary words. It is front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 3-parameter tool with no output schema or annotations, the description covers the essential functionality. However, it lacks details about error conditions, file size constraints, or whether the operation is synchronous. While adequate, it could be more complete given the absence of annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for all three parameters. The description adds value beyond the schema by providing an explicit example (from=5,to=10) that clarifies the 1-based inclusive range. This enhances understanding without being redundant.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Extract'), the resource ('PDF'), and the specific operation ('page range'). The example (from=5,to=10 keeps pages 5–10) reinforces the 1-based inclusive nature. This tool is distinct from siblings like compress, delete, merge, etc., making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for extracting a page range but does not explicitly state when to use this tool versus alternatives. It lacks guidance on prerequisites, conditions, or exclusions. The context from sibling names provides differentiation, but the description itself offers no explicit usage advice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!