notepadpp-mcp (sandraschi/notepadpp-mcp) is an MCP server listed on the M8ven Trust Index. It scores 68 out of 100, grade C. It declares 19 tools. No publisher has claimed this listing.

C
Caution
68/100

notepadpp-mcp

MCP Server for Notepad++ automation with comprehensive file operations, plugin management, code linting, and Windows API integration. 26 tools, FastMCP 2.12 compatibility, and extensive testing.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

sandraschi

Source: github_repo_search

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Tool descriptions don’t match what handlers do
1 tool describes read intent but its handler mutates — plugin_ops (line 287: probe.write_text("x", encoding="utf-8"))
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
🔐
You'll be asked for 4 credentials: MCP_WEB_PASSWORD, NOTEPADPP_SAMPLING_API_KEY, NOTEPADPP_SAMPLING_USE_OPENAI_KEY, OPENAI_API_KEY
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes18 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

agentic_notepad_workflow

Execute agentic Notepad++ workflows using FastMCP 2.14.3 sampling with tools.

intelligent_file_processing

Intelligent batch processing using FastMCP 2.14.3 sampling with tools.

suggest_notepad_plan

SUGGEST_NOTEPAD_PLAN — Short plan via MCP sampling (requires reachable LLM).

notepad_dashboard

NOTEPAD_DASHBOARD — Show the MCP server status, open tab info, and fleet status in a rich UI dashboard.

notepadpp_shutdown

NOTEPADPP_SHUTDOWN — Stop the Notepad++ MCP bridge process (agent-initiated exit).

automation_ops

AUTOMATION_OPS — List and run saved Notepad++ macros.

display_ops

DISPLAY_OPS — Mitigate invisible text, display glitches, or adjust Notepad++ theme / dark mode.

file_ops
linting_ops

LINTING_OPS - Run linters/validators on disk files or list available engines.

lint_javascript_file

LINT_JAVASCRIPT_FILE - ESLint JSON output, or a minimal heuristic fallback.

lint_json_file

LINT_JSON_FILE - Parse JSON and report syntax or style nits (trailing commas, long lines).

lint_markdown_file

LINT_MARKDOWN_FILE - Lightweight Markdown structure checks (headers, links, code fences).

plugin_ops

PLUGIN_OPS — Discover, install, list, or invoke Notepad++ plugins.

session_ops

SESSION_OPS — Save, load, or list persisted Notepad++ workspace sessions.

status_ops

STATUS_OPS — Help text, server status, or connectivity health checks.

tab_ops

TAB_OPS — List, switch, or close editor tabs.

text_ops
sync_health
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configNOTEPADPP_SAMPLING_USE_CLIENT_LLMlet the MCP host run sampling when supported
configMCP_BRIDGE_URLS
configNOTEPADPP_PATH
configNOTEPADPP_TIMEOUT
configNOTEPADPP_AUTO_START
configNOTEPADPP_HOST
configMCP_PORT
configNOTEPADPP_LOG_LEVEL
configMCP_CENTRAL_DOCS
configMEGATEST_MODE
configMEGATEST_LOCATION
configMEGATEST_CLEANUP
configNOTEPADPP_AVAILABLE
configAI_PROVIDER
configAI_ENDPOINT
configAI_MODEL
configMCP_WEB_USER
🔐 secretMCP_WEB_PASSWORD
configNOTEPADPP_FLEET_REGISTRY
configNOTEPADPP_FLEET_MAX_PORTS
configNOTEPADPP_LIVE_SESSION_XMLOverrides NOTEPADPP_SESSION_STORAGE_DIR (where named .xml are stored), (override path to the live session.xml, e.g. portable or -settingsDir layouts).
configNOTEPADPP_SESSION_STORAGE_DIROverrides (where named .xml are stored), NOTEPADPP_LIVE_SESSION_XML (override path to the live session.xml, e.g. portable or -settingsDir layouts).
configNOTEPADPP_CONFIG_XML
configNOTEPADPP_PLUGIN_CATALOG_TTL_SEC
configNOTEPADPP_PLUGIN_LIST_URL
configNOTEPADPP_MCP_TAURI
configNOTEPADPP_SAMPLING_BASE_URLOpenAI-compatible base (e.g. Ollama http://127.0.0.1:11434/v1)
configNOTEPADPP_SAMPLING_MODEL
🔐 secretNOTEPADPP_SAMPLING_API_KEY
🔐 secretNOTEPADPP_SAMPLING_USE_OPENAI_KEY
🔐 secretOPENAI_API_KEY
Deployment configuration, supplied by whoever hosts the server. Users are not asked for these.
deployPORT
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

19/19 tools missing one or more hints — agentic_notepad_workflow (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); intelligent_file_processing (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); suggest_notepad_plan (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +16 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Destructive tools are labelled

1 tool perform destructive updates without destructiveHint — plugin_ops deletes at line 288 (probe.unlink())

Add destructiveHint:true to any tool whose handler calls .delete(), .upsert(), .update(), unlink, rm, DELETE, DROP, REPLACE INTO, or any operation that overwrites existing data.

Descriptions match behaviour

1 tool describes read intent but its handler mutates — plugin_ops (line 287: probe.write_text("x", encoding="utf-8"))

Rename the tool, rewrite the description, or move the side-effect into a separate clearly-named tool.

Tool test coverage

11/19 tools referenced in tests (58%)

Write tests that reference each tool by name so every tool has at least one test.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 5 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/sandraschi/notepadpp-mcp?variant=verified)](https://m8ven.ai/mcp/sandraschi/notepadpp-mcp)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 98c63cb5a498b470c182ef8f5a1b9c410a01278a
code hash: 6429aa24ce5068f81a6a47b5f395715460c13b54e7527329bdd35aeb8b13c089
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client