tpmjs/packages/tools/official/exe-dev/package.json
Ajax Davis c21ed5b41e feat(exe-dev): add exe.dev VM management tools v0.2.3
Add 15 MCP tools for managing exe.dev virtual machines:
- list, create, deleteVm, restart - VM lifecycle management
- exec - execute commands on VMs via SSH
- shareShow, shareSetPublic, shareSetPrivate - visibility control
- sharePort - configure HTTP proxy port
- shareAddUser, shareRemoveUser - user access management
- shareAddLink, shareRemoveLink - shareable link management
- whoami - user account info
- shelleyInstall - install Shelley agent

Key fixes in v0.2.3:
- Properly quote SSH args to prevent local shell interpretation
- Add -- separator for commands to prevent flag parsing issues
- Support base64-encoded SSH key via EXE_DEV_SSH_KEY env var
2026-01-15 09:49:08 +10:00

123 lines
3.1 KiB
JSON

{
"name": "@tpmjs/tools-exe-dev",
"version": "0.2.3",
"description": "Manage exe.dev virtual machines. Create, list, delete, restart VMs, manage sharing, and execute commands via SSH.",
"type": "module",
"keywords": [
"tpmjs",
"exe.dev",
"vm",
"virtual-machine",
"ssh",
"cloud",
"ai"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist .turbo"
},
"devDependencies": {
"@tpmjs/tsconfig": "workspace:*",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"ai": "6.0.23"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/tpmjs/tpmjs.git",
"directory": "packages/tools/official/exe-dev"
},
"homepage": "https://tpmjs.com",
"license": "MIT",
"tpmjs": {
"category": "ops",
"frameworks": [
"vercel-ai"
],
"env": [
{
"name": "EXE_DEV_SSH_KEY",
"description": "Base64-encoded SSH private key for exe.dev authentication. Generate with: cat ~/.ssh/id_ed25519 | base64",
"required": false
}
],
"tools": [
{
"name": "list",
"description": "List all exe.dev virtual machines for the authenticated user."
},
{
"name": "create",
"description": "Create a new exe.dev virtual machine with optional image, env vars, and Shelley prompt."
},
{
"name": "deleteVm",
"description": "Delete an exe.dev virtual machine permanently."
},
{
"name": "restart",
"description": "Restart an exe.dev virtual machine."
},
{
"name": "exec",
"description": "Execute a command on an exe.dev VM via SSH."
},
{
"name": "shareShow",
"description": "Show the sharing configuration for an exe.dev VM."
},
{
"name": "shareSetPublic",
"description": "Make an exe.dev VM's HTTP proxy publicly accessible."
},
{
"name": "shareSetPrivate",
"description": "Make an exe.dev VM's HTTP proxy private."
},
{
"name": "sharePort",
"description": "Configure the HTTP proxy port for an exe.dev VM."
},
{
"name": "shareAddUser",
"description": "Grant a user access to an exe.dev VM by email."
},
{
"name": "shareRemoveUser",
"description": "Revoke a user's access to an exe.dev VM."
},
{
"name": "shareAddLink",
"description": "Generate a shareable link for an exe.dev VM."
},
{
"name": "shareRemoveLink",
"description": "Revoke a shareable link for an exe.dev VM."
},
{
"name": "whoami",
"description": "Get the current exe.dev user's account information."
},
{
"name": "shelleyInstall",
"description": "Install or upgrade Shelley agent on an exe.dev VM."
}
]
}
}