@agent-sandbox/mcp 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@agent-sandbox/mcp",
3
+ "version": "0.0.1",
4
+ "description": "MCP server for AI agent sandboxes — exposes sandbox tools over Model Context Protocol",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "main": "./dist/http.js",
8
+ "exports": {
9
+ ".": "./dist/http.js",
10
+ "./stdio": "./dist/stdio.js"
11
+ },
12
+ "bin": {
13
+ "agent-sandbox-mcp": "./dist/stdio.js"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "dev": "xmcp dev",
20
+ "build": "xmcp build",
21
+ "start:http": "node dist/http.js",
22
+ "start:stdio": "node dist/stdio.js"
23
+ },
24
+ "dependencies": {
25
+ "xmcp": "^0.6.4",
26
+ "zod": "^4.3.6"
27
+ },
28
+ "devDependencies": {
29
+ "@types/bun": "latest",
30
+ "typescript": "^5"
31
+ },
32
+ "engines": {
33
+ "node": ">=18",
34
+ "bun": ">=1.0.0"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/usamaasfar/agent-sandbox.git",
39
+ "directory": "apps/mcp"
40
+ },
41
+ "homepage": "https://github.com/usamaasfar/agent-sandbox#readme",
42
+ "bugs": {
43
+ "url": "https://github.com/usamaasfar/agent-sandbox/issues"
44
+ },
45
+ "keywords": [
46
+ "sandbox",
47
+ "agent",
48
+ "ai",
49
+ "mcp",
50
+ "model-context-protocol",
51
+ "docker"
52
+ ]
53
+ }