Platter
OCI · GHCR.IO/SCRIPTSMITH/PLATTER:2.0.2-RC7 · 5 COMPONENTS · SCANNED AUG 3
MCP server exposing Read, Write, Edit, Bash, Glob, Grep, and JS tools over stdio.
Deprecated
This server is marked deprecated in the MCP registry.
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 Security0
- Malware scan not yet available for this package.Unverified
- CVE data not yet available for this package.Unverified
- Install-script risk not yet assessed.Unverified
- Dependency-health data not yet available.Unverified
Provenance & Transparency19
- Repository check failed: the declared repository URL redirects; it must resolve directly. See how to fix → View diagnostics → Fail
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 104 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability74
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 905 tokens (~129/item across 7 items; 7 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
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.
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.
oci · ghcr.io/scriptsmith/platter:2.0.2-rc7
claude mcp add scriptsmith-platter -- docker run --rm -i ghcr.io/scriptsmith/platter:2.0.2-rc7
codex mcp add scriptsmith-platter -- docker run --rm -i ghcr.io/scriptsmith/platter:2.0.2-rc7
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"scriptsmith-platter": {
"type": "local",
"command": [
"docker",
"run",
"--rm",
"-i",
"ghcr.io/scriptsmith/platter:2.0.2-rc7"
],
"enabled": true
}
}
} mcp_servers:
scriptsmith-platter:
command: "docker"
args: ["run", "--rm", "-i", "ghcr.io/scriptsmith/platter:2.0.2-rc7"] {
"mcpServers": {
"scriptsmith-platter": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"ghcr.io/scriptsmith/platter:2.0.2-rc7"
]
}
}
} 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 +1
No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.
- 2 Aug 26 +3
- Stability: unverified → 0.23 ▲ functional
- 31 Jul 26 −4
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 26 Jul 26 38
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 oci/ghcr.io/scriptsmith/platter:2.0.2-rc7
Provenance none
Ecosystem: oci · Outcome: none
Reason: no_attestation
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.
bash Bash ~173
Execute a bash command, or manage a running process. To start a command: provide 'command' and optional 'timeout' in seconds. Returns stdout/stderr combined, truncated to last 2000 lines or 50KB. If a timeout is set and the command hasn't finished, partial output is returned with the process pid. Use bash({ pid }) to wait for more output, or bash({ pid, kill: true }) to terminate it.
| Name | Type | Req | Description |
|---|---|---|---|
| command | string | — | Bash command to execute (required to start a new process) |
| kill | boolean | — | Kill the process specified by pid |
| pid | number | — | PID of a running process to reattach to or kill |
| timeout | number | — | Timeout in seconds. If the command hasn't finished by then, partial output is returned with the process pid. |
No output schema declared.
No examples provided.
edit Edit ~113
Edit a file by replacing exact text. The old_text must match exactly (including whitespace). Supports fuzzy matching for minor Unicode/whitespace differences. The match must be unique in the file.
| Name | Type | Req | Description |
|---|---|---|---|
| new_text | string | yes | New text to replace the old text with |
| old_text | string | yes | Exact text to find and replace (must match exactly) |
| path | string | yes | Path to the file to edit (relative or absolute) |
| replace_all | boolean | — | Replace all occurrences of old_text (default false) |
No output schema declared.
No examples provided.
glob Glob ~79
Fast file pattern matching. Returns file paths matching a glob pattern, sorted alphabetically. Supports patterns like '**/*.ts', 'src/**/*.tsx', '*.json'.
| Name | Type | Req | Description |
|---|---|---|---|
| path | string | — | Directory to search in (relative or absolute). Defaults to working directory. |
| pattern | string | yes | Glob pattern to match files against (e.g. '**/*.ts') |
No output schema declared.
No examples provided.
grep Grep ~229
Search file contents using ripgrep. Supports regex patterns, file filtering, and multiple output modes. Requires ripgrep (rg) to be installed.
| Name | Type | Req | Description |
|---|---|---|---|
| after_context | number | — | Number of lines to show after each match (content mode only) |
| before_context | number | — | Number of lines to show before each match (content mode only) |
| case_insensitive | boolean | — | Case insensitive search (default false) |
| context | number | — | Number of lines to show before and after each match (content mode only) |
| fixed_strings | boolean | — | Treat pattern as a literal string, not a regex (default false) |
| glob | string | — | Glob pattern to filter files (e.g. '*.js', '*.{ts,tsx}') |
| output_mode | string | — | Output mode: 'content' shows matching lines, 'files_with_matches' shows file paths (default), 'count' shows match counts per file |
| path | string | — | File or directory to search in (relative or absolute). Defaults to working directory. |
| pattern | string | yes | Regular expression pattern to search for |
No output schema declared.
No examples provided.
js JavaScript ~161
Evaluate JavaScript/TypeScript code in a persistent runtime. State persists across calls within the session. Use assignment (`x = 42`) or `var` to persist values between calls. `function` and `class` declarations also persist. `let`/`const` are scoped to the current evaluation. Supports `await` for async operations: `data = await fetch(url)`. Load packages with `await load("lodash")` (fetches from unpkg.com) or `await load("https://cdn.example.com/lib.js")`. Returns the result of the last expression, plus any console output.
| Name | Type | Req | Description |
|---|---|---|---|
| code | string | yes | JavaScript or TypeScript code to evaluate |
| timeout | number | — | Timeout in seconds (default: 30) |
No output schema declared.
No examples provided.
read Read ~88
Read the contents of a file. Output is truncated to 2000 lines or 50KB (whichever is hit first). Use offset/limit for large files.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | number | — | Maximum number of lines to read |
| offset | number | — | Line number to start reading from (1-indexed) |
| path | string | yes | Path to the file to read (relative or absolute) |
No output schema declared.
No examples provided.
write Write ~62
Write content to a file. Creates the file if it doesn't exist, overwrites if it does. Automatically creates parent directories.
| Name | Type | Req | Description |
|---|---|---|---|
| content | string | yes | Content to write to the file |
| path | string | yes | Path to the file to write (relative or absolute) |
No output schema declared.
No examples provided.