Local Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Local Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A stdio MCP server that exposes local file I/O, a small shell whitelist, and SQLite helpers. Built for wiring Cursor/Claude Desktop to stuff on your machine without giving the model full shell access.
npm install
npm run build
cp config.example.json config.json
# edit allowedRoots to match your machineAdd to your MCP client config (Cursor example):
{
"mcpServers": {
"local": {
"command": "node",
"args": ["D:/path/to/local-mcp-server/dist/index.js"],
"env": {
"LOCAL_MCP_CONFIG": "D:/path/to/local-mcp-server/config.json"
}
}
}
}| Tool | What it does |
|---|---|
read_file / list_dir / write_file | Scoped to allowedRoots in config |
system_info | Host stats, no secrets |
run_command | Whitelist only: echo, date, pwd, whoami, uname |
db_query / db_exec | SQLite via named aliases in config |
allowedRoots at $HOME.db_exec blocks DROP/ALTER; everything else is on you.uname won't work unless you have it installed.npm run dev # tsx, stdio — hard to debug interactively
npm testMIT licensed. PRs welcome for additional read-only system probes.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.