# io.github.AugustusW/sharedoc-mcp (npm · sharedoc-mcp)

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

- Trust score: 71/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-04

## Components

- npm · `sharedoc-mcp`: 71/100 (this document), [markdown](https://verifymcp.io/servers/augustusw-sharedoc-mcp/sharedoc-mcp.md), [page](https://verifymcp.io/servers/augustusw-sharedoc-mcp/sharedoc-mcp)

## Channel facts

- Registry: `npm`
- Package: `sharedoc-mcp`
- Version: `2.1.4`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-04.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (113 of 117), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (113 of 117), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to AugustusW/sharedoc-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 0 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 590 tokens (~73/item across 8 items; 8 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add augustusw-sharedoc-mcp -- npx -y sharedoc-mcp
```

### Codex

```bash
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
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add augustusw-sharedoc-mcp --command npx --arg -y --arg sharedoc-mcp
```

### Hermes

```yaml
mcp_servers:
  augustusw-sharedoc-mcp:
    command: "npx"
    args: ["-y", "sharedoc-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "augustusw-sharedoc-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "sharedoc-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-04 (score 71, +40)

- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] MCP protocol: unverified → pass
- [functional] First check of Tool coverage: 0
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: good

### 2026-08-03 (score 31)

First indexed and scored.

## MCP tools (8)

### `create_shared_doc` (~85 tokens)

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.

Input parameters:

- `author` (string)
- `content` (string, required)
- `expires_in_hours` (number)
- `password` (string)
- `title` (string, required)

### `append_to_shared_doc` (~71 tokens)

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.

Input parameters:

- `content` (string, required)
- `doc_id_or_url` (string, required)
- `updated_user` (string)

### `extend_shared_doc` (~60 tokens)

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).

Input parameters:

- `doc_id_or_url` (string, required)
- `hours` (number, required)

### `reset_shared_doc_password` (~48 tokens)

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

Input parameters:

- `doc_id_or_url` (string, required)
- `new_password` (required)
- `updated_user` (string)

### `update_shared_doc_title` (~47 tokens)

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

Input parameters:

- `doc_id_or_url` (string, required)
- `new_title` (string, required)
- `updated_user` (string)

### `revoke_shared_doc` (~85 tokens)

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.

Input parameters:

- `doc_id_or_url` (string, required)
- `updated_user` (string)

### `delete_shared_doc` (~90 tokens)

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.

Input parameters:

- `confirm` (boolean, required)
- `doc_id_or_url` (string, required)

### `search_shared_docs` (~104 tokens)

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.

Input parameters:

- `content_query` (string)
- `limit` (number)
- `status` (string)
- `title_query` (string)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/augustusw-sharedoc-mcp/sharedoc-mcp#diagnostics

## Score history

- 2026-08-04: 71
- 2026-08-03: 31

## Links

- npm package: https://www.npmjs.com/package/sharedoc-mcp
- Socket report: https://socket.dev/npm/package/sharedoc-mcp
- Repository: https://github.com/AugustusW/sharedoc-mcp
- Changelog RSS feed: https://verifymcp.io/servers/augustusw-sharedoc-mcp/sharedoc-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/augustusw-sharedoc-mcp/sharedoc-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/augustusw-sharedoc-mcp/sharedoc-mcp
