npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@synexiom-labs/nodiom-mcp

v0.1.0

Published

MCP server for nodiom — structured read/write access to Markdown documents for AI agents.

Downloads

28

Readme

@synexiom-labs/nodiom-mcp

MCP server for nodiom — structured read/write access to Markdown documents for AI agents.

npm version license

Expose nodiom's structural Markdown operations as Model Context Protocol tools. Any MCP-compatible agent — Claude Desktop, Claude Code, or any custom MCP client — can read, write, append, and delete content in Markdown files using structural selectors, without regex or string hacking.


Install

npm install -g @synexiom-labs/nodiom-mcp

Or use directly with npx (no install required):

npx @synexiom-labs/nodiom-mcp

Setup

Claude Desktop

Add to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "nodiom": {
      "command": "npx",
      "args": ["-y", "@synexiom-labs/nodiom-mcp"]
    }
  }
}

Claude Code

claude mcp add -s user nodiom -- npx -y @synexiom-labs/nodiom-mcp

The -s user flag registers the server globally across all your projects. Without it, the server is only active when Claude Code's working directory matches the project where you ran the command.

Any MCP client (stdio transport)

{
  "command": "npx",
  "args": ["-y", "@synexiom-labs/nodiom-mcp"]
}

Tools

The server exposes 7 tools, all operating on local Markdown files by absolute path.

nodiom_tree

Get the structural outline of a document before reading or modifying it.

file: "/path/to/wiki.md"
→ Returns a nested JSON tree of all headings

nodiom_read

Read the content at a structural location.

file: "/path/to/wiki.md"
selector: "# Project Aurora > ## Tasks > ### Active"
→ Returns the Markdown content of that section

nodiom_read_list

Read all list items under a section as a JSON array.

file: "/path/to/wiki.md"
selector: "# Project Aurora > ## Team"
→ ["- Alice Chen — Tech Lead", "- Bob Martinez — ML Engineer", ...]

nodiom_write

Replace the content of a section (heading is preserved).

file: "/path/to/wiki.md"
selector: "# Project Aurora > ## Overview"
content: "Project Aurora is on track for Q3 delivery."
→ Replaces only the Overview body. Nothing else changes.

nodiom_append

Append content after the last item in a section.

file: "/path/to/wiki.md"
selector: "# Project Aurora > ## Tasks > ### Active"
content: "- [ ] Deploy to staging"
→ Adds the new task at the end of Active. Existing tasks untouched.

nodiom_delete

Remove a node or section.

file: "/path/to/wiki.md"
selector: "# Project Aurora > ## Tasks > ### Completed > li[0]"
→ Removes the first completed task.

nodiom_query

Check if a section exists and get its metadata.

file: "/path/to/wiki.md"
selector: "# Project Aurora > ## Tasks"
→ { "exists": true, "type": "heading", "depth": 2, "childCount": 3, "index": 4 }

Selector Syntax

Selectors are " > "-separated paths of heading and element segments:

"# Project"                          → H1 section
"# Project > ## Tasks"               → H2 under H1
"# Project > ## Tasks > ### Active"  → H3 under H2 under H1
"## Tasks > li[0]"                   → First list item
"## Tasks > li[-1]"                  → Last list item
"## Notes > p[0]"                    → First paragraph
"## Arch > table[0]"                 → First table

When a selector doesn't match, the error includes fuzzy suggestions: "Did you mean '## Tasks'?"


Example Agent Prompt

Once the server is configured, you can instruct Claude naturally:

"Look at my project wiki at /Users/me/projects/aurora/wiki.md. What are the active tasks? Add a new task: 'Write integration tests'. Then move the first completed task to a new '## Archive' section."

Claude will use nodiom_tree to understand the structure, nodiom_read_list to get the tasks, nodiom_append to add the new one, and nodiom_read + nodiom_delete + nodiom_append to move the completed task — all without loading the entire file as a string.


Part of the Nodiom ecosystem

| Package | Description | |---|---| | @synexiom-labs/nodiom | Core library — use directly in your Node.js code | | @synexiom-labs/nodiom-mcp | This package — MCP server for AI agents |


License

MIT — Synexiom Labs Inc.