io.github.sebastienrousseau/noyalib-mcp
OCI · GHCR.IO/SEBASTIENROUSSEAU/NOYALIB-MCP:0.0.45 · SCANNED SEP 20
MCP server for lossless YAML 1.2 parsing, formatting, and validation (pure Rust).
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 → Why this is hard to score →
Supply Chain Security0
- Malware scan not yet available for this package.Unverified
- Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
- Install-script risk not yet assessed.Unverified
- Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
Provenance & Transparency48
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT OR Apache-2.0).Pass
- Actively maintained (last published 0 days ago).Pass
- Publishes a security disclosure policy (SECURITY.md).Pass
Schema Quality & AI Usability87
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 881 tokens (~110/item across 8 items; 6 tools + 2 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
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
Tool Safety100
- No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
- We read all 6 captured tool definition(s), and no name or description among them implies an irreversible operation.Pass
- An AI judge read all 8 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
- Implements a current MCP spec version (2026-07-28).Pass
Unverified: 2 categories
Categories scored 0 because we could not verify them: 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.
How do I install the io.github.sebastienrousseau/noyalib-mcp server?
io.github.sebastienrousseau/noyalib-mcp runs locally as a container image, launched with docker run --rm -i ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45. Ready-made configuration for Claude, Cursor, VS Code, Codex and 3 more is on this page, copied from each client's own documentation.
oci · ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45
claude mcp add sebastienrousseau-noyalib-mcp -- docker run --rm -i ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45
{
"mcpServers": {
"sebastienrousseau-noyalib-mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45"
]
}
}
} {
"servers": {
"sebastienrousseau-noyalib-mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45"
]
}
}
} codex mcp add sebastienrousseau-noyalib-mcp -- docker run --rm -i ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"sebastienrousseau-noyalib-mcp": {
"type": "local",
"command": [
"docker",
"run",
"--rm",
"-i",
"ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45"
],
"enabled": true
}
}
} mcp_servers:
sebastienrousseau-noyalib-mcp:
command: "docker"
args: ["run", "--rm", "-i", "ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45"] {
"McpServers": {
"sebastienrousseau-noyalib-mcp": {
"Transport": "stdio",
"Command": "docker",
"Arguments": [
"run",
"--rm",
"-i",
"ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45"
]
}
}
} {
"mcpServers": {
"sebastienrousseau-noyalib-mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45"
]
}
}
} 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.
- 19 Sept 26 43
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 20 Sept 2026 · Analysed oci/ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45
Provenance No attestation
The registry publishes no build provenance for this version, so there is nothing to verify.
| Result | No attestation |
|---|---|
| Ecosystem | oci |
| Reason | No attestation published |
Background: How many MCP packages publish verified provenance →
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. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →
noyalib_edit Edit a value in YAML text, losslessly (stateless) ~121
Set the value at a dotted/indexed path in the YAML text given in the request and return the whole edited text. Only the touched span changes; every comment, blank line and quote style elsewhere is preserved byte-for-byte. Nothing on disk is touched: the caller decides where the result goes.
| Name | Type | Req | Description |
|---|---|---|---|
| path | string | yes | Dotted/indexed path, e.g. `server.port` or `items[0].name`. |
| value | string | yes | Replacement value as a YAML fragment. |
| yaml | string | yes | The YAML text to edit. |
No output schema declared.
No examples provided.
noyalib_get Read a YAML value (lossless) ~115
Read the YAML value at a dotted/indexed path in the given file and return the source slice exactly — no re-quoting, no canonicalisation, comments and formatting preserved. Use this to inspect a value before changing it; use `noyalib_set` to write a value back losslessly.
| Name | Type | Req | Description |
|---|---|---|---|
| file | string | yes | Path to the YAML file on disk. |
| path | string | yes | Dotted/indexed path into the YAML, e.g. `server.host` or `items[0].name`. |
No output schema declared.
No examples provided.
noyalib_parse Parse YAML text into JSON (stateless) ~93
Parse the YAML text given in the request and return its JSON data model (custom tags stripped, the projection the official YAML test suite expects). Multi-document streams return a JSON array with one element per document. Refuses hostile input (nesting, alias expansion, size) with the same limits as the library. Nothing is read from or written to disk.
| Name | Type | Req | Description |
|---|---|---|---|
| yaml | string | yes | The YAML text to parse. |
No output schema declared.
No examples provided.
noyalib_set Write a YAML value (lossless) ~172
Set the YAML value at a dotted/indexed path in the given file, rewriting only the touched span so every comment, blank line, and sibling entry is preserved byte-for-byte (written atomically). Use this for Renovate-style version bumps and config patches; use `noyalib_get` first when you need to read the current value. On a parse error the document is left unchanged.
| Name | Type | Req | Description |
|---|---|---|---|
| file | string | yes | Path to the YAML file on disk. |
| path | string | yes | Dotted/indexed path into the YAML. |
| value | string | yes | Replacement value as a YAML fragment (e.g. `0.0.2`, `\"hello\"`, `[1, 2, 3]`). Must parse in the target position; the document is left unchanged on parse error. |
No output schema declared.
No examples provided.
noyalib_set_multidoc Write a YAML value in one document of a multi-doc stream (lossless) ~193
Set the YAML value at a dotted/indexed path within a single document of a multi-document (`---`-separated) YAML stream, selected by zero-based document index. Only the touched span of that one document is rewritten; every other document, comment, blank line and separator is preserved byte-for-byte (written atomically). Use `noyalib_set` for a single-document file. On a parse error or out-of-range index the file is left unchanged.
| Name | Type | Req | Description |
|---|---|---|---|
| doc_index | integer | yes | Zero-based index of the document within the `---`-separated stream to modify. |
| file | string | yes | Path to the multi-document YAML file on disk. |
| path | string | yes | Dotted/indexed path into the selected document. |
| value | string | yes | Replacement value as a YAML fragment. Must parse in the target position; the file is left unchanged on parse error. |
No output schema declared.
No examples provided.
noyalib_validate Validate YAML text, optionally against a JSON Schema (stateless) ~106
Check that the YAML text parses under the library's limits, and when a JSON Schema (as JSON text) is given, that the document satisfies it. Returns `valid` with an empty list, or the parse error with its line and column, or every schema violation with its RFC 6901 path. Nothing on disk is touched.
| Name | Type | Req | Description |
|---|---|---|---|
| schema | string | – | A JSON Schema, as JSON text (optional). |
| yaml | string | yes | The YAML text to validate. |
No output schema declared.
No examples provided.
What is the io.github.sebastienrousseau/noyalib-mcp server?
io.github.sebastienrousseau/noyalib-mcp is listed in the public MCP registry as io.github.sebastienrousseau/noyalib-mcp. MCP server for lossless YAML 1.2 parsing, formatting, and validation (pure Rust). This page covers its container image (ghcr.io/sebastienrousseau/noyalib-mcp:0.0.45).
Is the io.github.sebastienrousseau/noyalib-mcp server safe to use?
io.github.sebastienrousseau/noyalib-mcp scores 43 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.
What tools does the io.github.sebastienrousseau/noyalib-mcp server expose?
io.github.sebastienrousseau/noyalib-mcp exposes 6 tools: noyalib_get, noyalib_set, noyalib_set_multidoc, noyalib_parse, noyalib_edit, noyalib_validate. Their descriptions and schemas cost roughly 800 tokens of context every time the server is loaded.
Is the io.github.sebastienrousseau/noyalib-mcp server still maintained?
io.github.sebastienrousseau/noyalib-mcp is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.
What licence is the io.github.sebastienrousseau/noyalib-mcp server under?
io.github.sebastienrousseau/noyalib-mcp declares the MIT OR Apache-2.0 licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.