Skip to main content
Glama
NamerekWASD

Paperless-ngx MCP Server

by NamerekWASD

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation4/5

    Most tools target distinct actions or resources, but stats and the list_* tools both report counts for tags, correspondents, and types, which could cause some ambiguity. search/get/download/update/upload are clearly separated.

    Naming Consistency4/5

    Eight tools follow a consistent verb_noun pattern such as search_documents, get_document, list_tags, and upload_document. The exception is 'stats', which breaks the pattern and would be clearer as get_stats or get_summary.

    Tool Count5/5

    Nine tools is well-scoped for a document management server: search, retrieve, download, upload, update, reference-data listers, and a stats summary. Each tool earns its place without feeling redundant.

    Completeness3/5

    Core document operations are covered, including upload, search, get, download, and update, but there is no delete_document and no way to poll the async task ID returned by upload_document. Reference-data creation is only implicitly handled through update_document's create_missing flag.

  • Average 3.8/5 across 9 of 9 tools scored. Lowest: 2.9/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 2 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden of disclosing behavior. It states that metadata and OCR text are retrieved, implying a read operation, but it does not disclose the effect of include_content, failure behavior, response shape, or whether this is a safe side-effect-free operation.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single focused sentence with no filler. It is concise and readable, though slightly under-specified given the include_content parameter.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    With no annotations and no output schema, the description leaves meaningful gaps: the semantics of include_content, what the returned metadata contains, and any error conditions. It is minimally viable for a simple get-by-ID tool but not fully complete.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description must compensate for parameter meaning. 'By ID' hints at document_id's role, but include_content is not explained at all; the description does not clarify that include_content likely controls whether the OCR text is returned, nor does it describe expected formats.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb ('Retrieve') and names the resource ('document metadata and extracted OCR text') and the key selector ('by ID'). This clearly states what the tool does, though it does not explicitly distinguish it from sibling like download_document.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The phrase 'by ID' implies this tool is for fetching a specific document rather than searching or listing, so usage context is inferable. However, it does not explicitly mention when to use this tool instead of alternatives such as search_documents or download_document.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior2/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description must carry the full behavioral burden, but it only states the action and destination. It does not disclose side effects, file overwrite behavior, directory creation, authentication requirements, or failure modes.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is concise, front-loaded with the main action, and the parameter notes are formatted clearly without redundancy. Every line adds useful information.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a simple download tool, the description covers the essential parameters and destination behavior, but it lacks usage guidance, return/output expectations, and behavioral notes beyond the basic action. It is adequate for straightforward invocation but leaves gaps for an agent navigating sibling tools.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema has 0% description coverage, so the description compensates by explaining 'original' as the choice between original upload and archived PDF, and 'save_as' as a full path defaulting to PAPERLESS_DOWNLOAD_DIR. document_id is not described, but its meaning is self-evident.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the action as 'Download document file to local disk' with a specific verb and resource, making the core purpose obvious. It doesn't explicitly differentiate from the sibling 'get_document', but the download-to-disk framing is distinct enough.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides no guidance on when to use this tool versus alternatives like get_document or search_documents. It states what the tool does but offers no context about which scenarios call for it.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the behavioral disclosure burden. It correctly implies a read-only summary operation, but it does not explain whether counts apply to the entire archive, whether any scoping exists, or what the response shape is. This is adequate but not richly transparent.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, front-loaded sentence that names the resource and all counted categories. There is no filler, and every word contributes useful meaning.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a zero-parameter tool, the description is largely complete: it enumerates what counts are included and indicates an archive-wide summary. Since there is no output schema, it could have described the return structure more explicitly, but the simplicity of the tool limits the gap.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters, so no parameter documentation is needed. The baseline of 4 applies, and the description does not need to compensate for missing schema detail because there are no inputs.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly indicates the resource (archive) and content (counts of documents, tags, correspondents, types, and storage paths). It distinguishes itself from sibling tools like list_tags and list_correspondents by emphasizing counts rather than full listings, though it lacks an explicit verb like 'returns'.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Usage is implied: this is the tool for aggregate counts rather than detailed listings. However, there is no explicit guidance about when to choose stats over list_tags, list_correspondents, or search_documents, and no mention of when not to use it.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the behavioral disclosure burden. It clearly indicates that the operation lists correspondents and includes document counts, and the verb 'List' implies a read-only operation. However, it does not disclose caveats such as whether correspondents with zero documents appear, pagination, or ordering behavior. These are minor for a simple parameterless list, but the description is still minimal.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, front-loaded sentence with no wasted words. Every element—'all', 'correspondents', and 'document counts'—adds meaningful scope and result information.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool has no parameters and an output schema is present, the description is largely complete for invoking the tool. The only notable absence is usage-selection guidance relative to sibling tools like stats or search_documents, which is covered separately but slightly weakens overall context.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters and an empty input schema, so seedescription cannot add parameter-level detail. Per the baseline for parameterless tools, the description is sufficient because there are no arguments to explain or disambiguate.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description names a specific verb ('List') and resource ('all correspondents') and adds a distinctive detail ('with document counts') that separates it from sibling list tools like list_tags and list_document_types. An agent can immediately understand what this tool returns and who it is for.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines2/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives no guidance on when to use this tool instead of related tools such as stats, search_documents, or list_tags. There is no when-to-use or when-not-to-use context, so the agent must infer selection from the tool name and basic wording.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full disclosure burden. It reveals the asynchronous behavior, OCR processing, and the fact that the return value is a task ID. It does not mention error cases, file size limits, or whether the upload is immediately searchable, but the core behavioral trait is clearly disclosed.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is short and front-loaded with the main purpose, then provides the most important parameter detail and the async return behavior. It wastes no words, though the omitted parameter documentation prevents a perfect score because some of the compactness comes at the expense of completeness.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The description explains the return value and async behavior but does not cover five of seven parameters. Since there is no output schema and no annotations, the description is the only source of context, and its incomplete parameter coverage leaves an agent uncertain about optional metadata fields and the create_missing behavior.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description must compensate. It documents only file_path and created, adding useful meaning for those two parameters, but leaves tags, title, correspondent, document_type, and create_missing completely unexplained beyond their raw schema names and defaults. This is a significant gap for a 7-parameter tool.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a clear verb and resource: 'Upload a file to Paperless.' It also specifies that the tool returns a task ID and that processing/OCR are asynchronous, which immediately distinguishes it from the sibling search, retrieval, listing, and update tools.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies the usage context clearly: use this tool to ingest a local PDF/image file into Paperless. It explains that processing runs in the background, so callers know to expect a task ID rather than an immediate document result. It does not explicitly name alternatives or exclusions, but the unique upload function among siblings makes the intended use apparent.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the behavioral burden and does add real semantics: query is full-text across content and title, tags are ANDed ('must have all specified tags'), date filters are strictly after/before, and limit caps the result set. It does not mention response format, sorting, or what happens when filters are combined, but the provided behavioral details are meaningfully beyond generic search.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is compact and front-loaded with a one-sentence purpose followed by a parameter table with no wasted lines. The line-by-line format is functional and parseable, though it reads more like schema documentation than a narrative tool description, so it is not a perfect model of structure.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The description thoroughly covers parameter semantics for a 7-parameter, no-output-schema, no-annotation tool, but it does not explain return values, result ordering, or how multiple filter types interact. Given the lack of an output schema, an agent still has meaningful gaps about what this tool will actually return.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters5/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema has zero descriptions (0% coverage), so the description must compensate fully. It does: every parameter is explained with practical semantics—query scope, tag matching, correspondent/document_type names, strict date forms, and limit meaning. This is exemplary compensation for an underspecified schema.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The first sentence 'Search documents in Paperless' states a specific verb and resource, making the core purpose clear. However, it does not differentiate itself from siblings like get_document or list_tags; the agent must infer that this is for full-text/filtered search rather than single-document retrieval.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Usage is implied by the name and opening sentence: use this to search documents. There is no explicit when-to-use, when-not-to-use, or mention of alternatives among the sibling tools, so the guidance relies on inference rather than clear routing.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the burden of behavioral disclosure. 'List' implies a read-only operation and 'with document counts' discloses the return content, but it does not mention ordering, pagination, or performance characteristics. This is adequate for a simple list tool but not richly transparent.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single precise sentence that communicates the operation and the included information (document counts) without waste. It is front-loaded and immediately understandable.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the zero-parameter signature, the presence of an output schema, and the simple read-only nature, the description adequately covers the tool's purpose and expected return value. An agent can select and invoke this tool correctly based on the provided description alone.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters and the schema description coverage is 100%, so there is no parameter burden. The description logically adds no parameter detail because none exist. The baseline of 4 for zero-parameter tools applies.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb 'List' and a specific resource 'tags', and clarifies it includes document counts. It is clearly distinct from sibling tools like list_correspondents and list_document_types because it explicitly names the tag resource.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies when to use it: whenever a complete list of tags with their document counts is needed. It does not explicitly state exclusions or alternatives, but the resource-specific wording gives reasonable context for a simple read-only listing operation.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the burden of behavioral disclosure. It explains how empty strings clear fields, that tags use names vs IDs depending on parameter, and how create_missing affects behavior. This goes beyond the schema and gives agents important operational details, though it doesn't address permissions, reversibility, or partial update semantics explicitly.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness4/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is concise and front-loaded with the main purpose, followed by a compact list of parameter notes. Each note earns its place; formatting is scannable. Minor deduction for not using explicit markdown headers or bullet symbols, but the structure is effective.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given 7 parameters and no output schema or annotations, the description covers the most operationally critical details: how identifiers work, how clearing works, and create_missing semantics. It doesn't state return value behavior, which is the main gap, but the update semantics are well enough specified for reliable invocation.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description must compensate for the bare schema. It explains the meaning of correspondent/document_type, add_tags/remove_tags, and create_missing, including the clearing behavior and name/ID flexibility. This adds significant value over parameter names and types, though it doesn't fully describe all edge cases for every parameter.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool updates a document's title, correspondent, type, and tags, with specific verbs and target resources. It distinguishes this from siblings like get_document, download_document, and search_documents by focusing on mutation of existing document metadata.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage for updating document metadata but does not explicitly state when to use it versus upload_document or list_tags. It does not provide exclusions or alternatives, but the mutation intent is clear enough for an agent to infer typical use cases.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden. It implies a read-only listing operation and mentions the count detail, but doesn't explicitly state that the operation is non-destructive, requires no authentication, or has performance implications. For a simple list tool, this is adequate but not rich.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    A single, front-loaded sentence with no wasted words. The action and context are immediate, and the output detail is included efficiently.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    With zero parameters and an output schema present (as indicated), the description is sufficient for an agent to invoke the tool correctly. It includes the key output characteristic (document counts) and requires no additional explanation.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters and schema coverage is 100% by definition. The description adds no parameter details because there are none to add. Per rubric, zero parameters yields a baseline of 4.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a specific verb 'List' and a specific resource 'document types', with an output qualifier ('with document counts'). This clearly distinguishes it from sibling list tools like list_tags and list_correspondents by the entity type.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description's specificity about document types makes the intended use clear, and the sibling names provide implicit alternatives. However, it doesn't explicitly state when to choose this over list_tags or list_correspondents, or any conditions to avoid using it. Lacks explicit when-not-to-use guidance.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

mcp-paperless MCP server

Copy to your README.md:

Score Badge

mcp-paperless MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/NamerekWASD/mcp-paperless'

If you have feedback or need assistance with the MCP directory API, please join our Discord server