nodiom-mcp
Enables AI agents to read, write, append, and delete content in Markdown files using structural selectors, without regex or string hacking.
README
@synexiom-labs/nodiom-mcp
MCP server for nodiom — structured read/write access to Markdown documents for AI agents.
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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.