Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.AugustusW/sharedoc-mcp

NPM · SHAREDOC-MCP · SCANNED AUG 3

Share agent-generated Markdown as links — GitHub gists today, your own server tomorrow.

Available components

31 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security37
  • Malware scan not yet available for this package.Unverified
  • Only part of the dependency tree could be resolved (113 of 117), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (113 of 117), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency97
  • Source repository is publicly reachable at the declared URL. View diagnostics → Pass
  • Cryptographically verified build provenance (signed, bound to AugustusW/sharedoc-mcp). View diagnostics → Pass
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 0 days ago).Pass
  • Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability0
  • Schema quality not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.Unverified
Stability & Change Management0
  • Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.Unverified
Tool Coverage0
  • Tool coverage not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.Unverified
Capabilities0
  • Protocol version not yet verified: we do not have a sandbox capture of the MCP handshake this version of the package performs yet.Unverified

Unverified: 4 categories

Categories scored 0 because our sandbox run of this package has not given us the schema these checks need to read. That is a gap on our side rather than a finding about the package, and we only credit what we can confirm, so the score stands at 0 until the capture succeeds. We are working through the fleet, so this normally clears without any action from you. How we score packages →

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · sharedoc-mcp

# add to Claude Code
claude mcp add augustusw-sharedoc-mcp -- npx -y sharedoc-mcp
# add to Codex CLI
codex mcp add augustusw-sharedoc-mcp -- npx -y sharedoc-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "augustusw-sharedoc-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "sharedoc-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add augustusw-sharedoc-mcp --command npx --arg -y --arg sharedoc-mcp
# ~/.hermes/config.yaml
mcp_servers:
  augustusw-sharedoc-mcp:
    command: "npx"
    args: ["-y", "sharedoc-mcp"]
// mcp.json
{
  "mcpServers": {
    "augustusw-sharedoc-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "sharedoc-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 31

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance verified

Ecosystem: npm · Outcome: verified

Reason: verified

Source repo:
AugustusW/sharedoc-mcp
Certificate issuer:
https://token.actions.githubusercontent.com
Certificate SAN:
https://github.com/AugustusW/sharedoc-mcp/.github/workflows/publish.yml@refs/tags/v2.1.4
Rekor log index:
2334942971
Predicate type:
https://slsa.dev/provenance/v1
Subject digest:
sha512:c076c3235aefa213ae1f3515a56db60d1e1b768b48cd11d78ab792f6eaafaf571b5fcf3f90ba609d8473e83997a9492315d0a9637d77744d845204d73
Discovery method:
attestation_endpoint
Dependencies 113 packages

113 packages in the resolved dependency tree · 109 deprecated · 33 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 8 exposed · ~590 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
append_to_shared_doc ~71

Append content to an existing shared doc. NOT idempotent: a retry appends twice — check with search_shared_docs before retrying. Accepts a doc id or URL.

NameTypeReqDescription
contentstringyes
doc_id_or_urlstringyes
updated_userstring

No output schema declared.

No examples provided.

create_shared_doc ~85

Create a shared Markdown doc, returns a public URL. Backend semantics differ: gist backend has no password support (secret URL is the protection) and lazy expiry; selfhost backend enforces both.

NameTypeReqDescription
authorstring
contentstringyes
expires_in_hoursnumber
passwordstring
titlestringyes

No output schema declared.

No examples provided.

delete_shared_doc ~90

Permanently delete a shared doc: the link dies AND the record disappears from search — unlike revoke_shared_doc, no history is kept. Irreversible on both backends. Requires confirm: true, which you must only pass after the user explicitly approved the permanent deletion; prefer revoke_shared_doc for routine takedowns.

NameTypeReqDescription
confirmbooleanyes
doc_id_or_urlstringyes

No output schema declared.

No examples provided.

extend_shared_doc ~60

Extend a doc expiry by N hours (for "N days" multiply by 24 first). On the gist backend expiry is enforced lazily (cleanup on next use).

NameTypeReqDescription
doc_id_or_urlstringyes
hoursnumberyes

No output schema declared.

No examples provided.

reset_shared_doc_password ~48

Reset a doc password (null removes protection). Selfhost backend only.

NameTypeReqDescription
doc_id_or_urlstringyes
new_passwordyes
updated_userstring

No output schema declared.

No examples provided.

revoke_shared_doc ~85

Revoke a shared doc: the link stops working but the record stays searchable. Gist backend: the gist is deleted immediately and irreversibly. Selfhost backend: revoked with a 7-day grace before content is purged. To erase the record entirely, use delete_shared_doc.

NameTypeReqDescription
doc_id_or_urlstringyes
updated_userstring

No output schema declared.

No examples provided.

search_shared_docs ~104

Find previously shared docs and their links. Call with NO arguments to list the newest docs (each result includes its share URL). title_query filters by title substring; content_query searches body text (selfhost: full content; gist: the opening excerpt only); status filters active/revoked/expired; limit max 100.

NameTypeReqDescription
content_querystring
limitnumber
statusstring
title_querystring

No output schema declared.

No examples provided.

update_shared_doc_title ~47

Update a shared doc title (must be non-empty).

NameTypeReqDescription
doc_id_or_urlstringyes
new_titlestringyes
updated_userstring

No output schema declared.

No examples provided.