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

@declaw/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@declaw/mcp-server

MCP server for Declaw — secure AI sandboxes with network policies, PII scanning, injection defense, and audit logging

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

Declaw MCP Server

MCP server for Declaw — secure sandbox execution for AI agents with network policies, PII scanning, prompt injection defense, and audit logging.

Works with Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP-compatible AI tool.

Quick Start

Claude Desktop / Cursor / Windsurf

Add to your MCP config:

{
  "mcpServers": {
    "declaw": {
      "command": "npx",
      "args": ["-y", "@declaw/mcp-server"],
      "env": {
        "DECLAW_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add declaw -- npx -y @declaw/mcp-server

Set DECLAW_API_KEY in your environment.

Tools

ToolDescription
create_sandboxCreate a secure sandbox with configurable security policies
run_commandExecute a shell command inside a sandbox
read_fileRead a file from a sandbox
write_fileWrite a file to a sandbox
list_filesList directory contents in a sandbox
kill_sandboxDestroy a sandbox
list_sandboxesList all active sandboxes

Security Presets

When creating a sandbox, choose a security preset:

  • none — No guardrails. Full internet access.
  • standard (default) — PII scanning + audit logging. Full internet access.
  • strict — PII scanning + prompt injection defense + audit logging + network deny-all.

You can also pass allowed_domains to restrict outbound traffic to specific domains:

create_sandbox with template="python", security_preset="strict", allowed_domains=["pypi.org", "github.com"]

Why Declaw?

DeclawOther Sandbox Providers
Sandbox executionYesYes
Non-bypassable network controlsYes??
PII scanningYesNo
Injection defenseYesNo
Full audit trailYesBasic
SnapshotsYesVaries
Multiple templates8 built-inVaries
Interactive stdioYesVaries

Environment Variables

VariableRequiredDescription
DECLAW_API_KEYYesYour Declaw API key
DECLAW_DOMAINNoCustom API domain (for on-prem deployments)

On-Prem

For self-hosted Declaw deployments, set the domain:

{
  "mcpServers": {
    "declaw": {
      "command": "npx",
      "args": ["-y", "@declaw/mcp-server"],
      "env": {
        "DECLAW_API_KEY": "your-api-key",
        "DECLAW_DOMAIN": "declaw.internal.company.com"
      }
    }
  }
}

License

Apache-2.0

Keywords

mcp

FAQs

Package last updated on 13 Jun 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