@ferax564/noma-mcp-server
v0.15.0
Published
MCP server for @ferax564/noma-cli — block-level agent editing
Readme
@ferax564/noma-mcp-server
MCP server for block-level editing of .noma documents.
The server exposes the same stable document operations as the CLI over stdio so agents can inspect, validate, and patch Noma files without rewriting whole documents.
Install
npm install @ferax564/noma-mcp-serverTools
read_docparses a.nomafile and returns shallow block summaries.list_idsreturns canonical IDs and alias mappings.validate_docruns the Noma validator.patch_blockapplies one source-preserving patch operation and appends a transcript record.
MCP host configuration
Use the published binary as a stdio command:
{
"mcpServers": {
"noma": {
"command": "npx",
"args": ["-y", "@ferax564/noma-mcp-server"]
}
}
}For TypeScript workflows that want a small client wrapper, install
@ferax564/noma-agent-sdk.
