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
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 →
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
claude mcp add augustusw-sharedoc-mcp -- npx -y sharedoc-mcp
codex mcp add augustusw-sharedoc-mcp -- npx -y sharedoc-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"augustusw-sharedoc-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"sharedoc-mcp"
],
"enabled": true
}
}
} openclaw mcp add augustusw-sharedoc-mcp --command npx --arg -y --arg sharedoc-mcp
mcp_servers:
augustusw-sharedoc-mcp:
command: "npx"
args: ["-y", "sharedoc-mcp"] {
"mcpServers": {
"augustusw-sharedoc-mcp": {
"command": "npx",
"args": [
"-y",
"sharedoc-mcp"
]
}
}
} 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.
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.
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.
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.
| Name | Type | Req | Description |
|---|---|---|---|
| content | string | yes | — |
| doc_id_or_url | string | yes | — |
| updated_user | string | — | — |
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.
| Name | Type | Req | Description |
|---|---|---|---|
| author | string | — | — |
| content | string | yes | — |
| expires_in_hours | number | — | — |
| password | string | — | — |
| title | string | yes | — |
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.
| Name | Type | Req | Description |
|---|---|---|---|
| confirm | boolean | yes | — |
| doc_id_or_url | string | yes | — |
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).
| Name | Type | Req | Description |
|---|---|---|---|
| doc_id_or_url | string | yes | — |
| hours | number | yes | — |
No output schema declared.
No examples provided.
reset_shared_doc_password ~48
Reset a doc password (null removes protection). Selfhost backend only.
| Name | Type | Req | Description |
|---|---|---|---|
| doc_id_or_url | string | yes | — |
| new_password | — | yes | — |
| updated_user | string | — | — |
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.
| Name | Type | Req | Description |
|---|---|---|---|
| doc_id_or_url | string | yes | — |
| updated_user | string | — | — |
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.
| Name | Type | Req | Description |
|---|---|---|---|
| content_query | string | — | — |
| limit | number | — | — |
| status | string | — | — |
| title_query | string | — | — |
No output schema declared.
No examples provided.
update_shared_doc_title ~47
Update a shared doc title (must be non-empty).
| Name | Type | Req | Description |
|---|---|---|---|
| doc_id_or_url | string | yes | — |
| new_title | string | yes | — |
| updated_user | string | — | — |
No output schema declared.
No examples provided.