🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@oscarmarin/mcp-devtools

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oscarmarin/mcp-devtools

Production-grade MCP server that gives AI agents safe access to your local dev environment: filesystem, databases, processes, and OpenAPI specs.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
30
-26.83%
Maintainers
1
Weekly downloads
 
Created
Source

mcp-devtools

npm version CI codecov License: MIT

AI-native developer tools via Model Context Protocol. A production-grade MCP server that gives AI agents (Claude, Cursor, Copilot, Continue, …) safe, scoped access to your local development environment.

Status: Phase 1 release candidate (v0.1.0-rc.1). Ten of the fourteen v1 tools are shipped behind hardened security boundaries; the remaining four ship in later phases as NOT_IMPLEMENTED stubs that respond cleanly.

Why

The MCP ecosystem is full of single-purpose tutorials and vendor-locked adapters. There is no well-maintained, multi-tool, framework-agnostic, production-quality MCP package for everyday developer tooling.

mcp-devtools fills that gap with 14 tools across 4 categories (filesystem, database, process, OpenAPI), built on patterns refined in production at DailyBot: retry with jitter, structured logging, typed error taxonomy, version stamps, exponential backoff.

Quick start

npx @oscarmarin/mcp-devtools

Add it to Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "devtools": {
      "command": "npx",
      "args": ["-y", "mcp-devtools"]
    }
  }
}

Or Cursor (~/.cursor/mcp.json): same block.

Tools

GroupToolsStatus
Filesystemread_file, write_file, list_directory, search_files, get_file_infoshipped
Databasequery_db, list_tables, describe_tableshipped
Processrun_commandshipped
Processread_logs, get_envstub (Phase 2)
OpenAPIparse_openapi, call_apistub (Phase 3)
Debugecho_testshipped (smoke tool)

Per-tool reference: docs/tools/.

Configuration

Configuration is loaded by cosmiconfig from mcp-devtools.json, .mcp-devtoolsrc, or the mcpDevtools key in package.json. See mcp-devtools.example.json and docs/configuration.md for the full schema.

Zero-config is supported: running npx mcp-devtools with no config uses schema defaults (RNF-05).

Security

Three non-bypassable controls:

  • Filesystem scope boundary. Every path is resolved to an absolute and compared against config.scope. Symlinks that escape scope throw SCOPE_VIOLATION.
  • Command allowlist. run_command only executes binaries whose basename is in allowedCommands. Invocation uses spawn(file, args) (no shell), so shell-injection via the command argument is structurally impossible.
  • Database read-only mode. When readOnly: true, all SQL is parsed and INSERT/UPDATE/DELETE/DROP/CREATE/GRANT are rejected. Result sets are capped (default 200 rows). Queries run in BEGIN READ ONLY ... ROLLBACK on PostgreSQL.

Development

nvm use
npm install
cp .env.example .env
npm run dev       # tsup --watch
npm run test      # vitest
npm run typecheck # tsc --noEmit
npm run lint      # eslint .

See CONTRIBUTING.md for the full workflow.

License

MIT © Oscar Humberto Marín Molina — oscarmarindev.com

Keywords

mcp

FAQs

Package last updated on 28 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts