{"id":50927915,"url":"https://github.com/declaw-ai/mcp-server","last_synced_at":"2026-06-17T01:04:02.375Z","repository":{"id":362677958,"uuid":"1260325530","full_name":"declaw-ai/mcp-server","owner":"declaw-ai","description":"MCP server for Declaw — secure AI sandboxes with network policies, PII scanning, injection defense, and audit logging","archived":false,"fork":false,"pushed_at":"2026-06-13T10:42:37.000Z","size":55,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-13T12:23:34.926Z","etag":null,"topics":["ai-agents","ai-security","claude","code-execution","firecracker","llm","mcp","mcp-server","microvm","model-context-protocol","pii-detection","prompt-injection","sandbox","sandboxing"],"latest_commit_sha":null,"homepage":"https://declaw.ai","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/declaw-ai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-05T11:27:10.000Z","updated_at":"2026-06-13T10:42:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/declaw-ai/mcp-server","commit_stats":null,"previous_names":["declaw-ai/mcp-server"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/declaw-ai/mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/declaw-ai%2Fmcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/declaw-ai%2Fmcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/declaw-ai%2Fmcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/declaw-ai%2Fmcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/declaw-ai","download_url":"https://codeload.github.com/declaw-ai/mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/declaw-ai%2Fmcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34429497,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","ai-security","claude","code-execution","firecracker","llm","mcp","mcp-server","microvm","model-context-protocol","pii-detection","prompt-injection","sandbox","sandboxing"],"created_at":"2026-06-17T01:04:01.385Z","updated_at":"2026-06-17T01:04:02.357Z","avatar_url":"https://github.com/declaw-ai.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Declaw MCP Server\n\nMCP server for [Declaw](https://declaw.ai) — secure sandbox execution for AI agents with network policies, PII scanning, prompt injection defense, and audit logging.\n\nWorks with Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP-compatible AI tool.\n\n## Quick Start\n\n### Claude Desktop / Cursor / Windsurf\n\nAdd to your MCP config:\n\n```json\n{\n  \"mcpServers\": {\n    \"declaw\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@declaw/mcp-server\"],\n      \"env\": {\n        \"DECLAW_API_KEY\": \"your-api-key\"\n      }\n    }\n  }\n}\n```\n\n### Claude Code\n\n```bash\nclaude mcp add declaw -- npx -y @declaw/mcp-server\n```\n\nSet `DECLAW_API_KEY` in your environment.\n\n## Tools\n\n| Tool | Description |\n|------|-------------|\n| `create_sandbox` | Create a secure sandbox with configurable security policies |\n| `run_command` | Execute a shell command inside a sandbox |\n| `read_file` | Read a file from a sandbox |\n| `write_file` | Write a file to a sandbox |\n| `list_files` | List directory contents in a sandbox |\n| `kill_sandbox` | Destroy a sandbox |\n| `list_sandboxes` | List all active sandboxes |\n\n## Security Presets\n\nWhen creating a sandbox, choose a security preset:\n\n- **`none`** — No guardrails. Full internet access.\n- **`standard`** (default) — PII scanning + audit logging. Full internet access.\n- **`strict`** — PII scanning + prompt injection defense + audit logging + network deny-all.\n\nYou can also pass `allowed_domains` to restrict outbound traffic to specific domains:\n\n```\ncreate_sandbox with template=\"python\", security_preset=\"strict\", allowed_domains=[\"pypi.org\", \"github.com\"]\n```\n\n## Why Declaw?\n\n| | Declaw | Other Sandbox Providers |\n|---|---|---|\n| Sandbox execution | Yes | Yes |\n| Non-bypassable network controls | Yes | ?? |\n| PII scanning | Yes | No |\n| Injection defense | Yes | No |\n| Full audit trail | Yes | Basic |\n| Snapshots | Yes | Varies |\n| Multiple templates | 8 built-in | Varies |\n| Interactive stdio | Yes | Varies |\n\n## Environment Variables\n\n| Variable | Required | Description |\n|----------|----------|-------------|\n| `DECLAW_API_KEY` | Yes | Your Declaw API key |\n| `DECLAW_DOMAIN` | No | Custom API domain (for on-prem deployments) |\n\n## On-Prem\n\nFor self-hosted Declaw deployments, set the domain:\n\n```json\n{\n  \"mcpServers\": {\n    \"declaw\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@declaw/mcp-server\"],\n      \"env\": {\n        \"DECLAW_API_KEY\": \"your-api-key\",\n        \"DECLAW_DOMAIN\": \"declaw.internal.company.com\"\n      }\n    }\n  }\n}\n```\n\n## License\n\nApache-2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeclaw-ai%2Fmcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeclaw-ai%2Fmcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeclaw-ai%2Fmcp-server/lists"}