{ "name": "artifyde-mcp", "mcpName": "com.artifyde/artifyde-mcp", "version": "0.1.2", "description": "MCP server for Artifyde — give your agent a permanent home for the HTML artifacts it builds: publish, pull, share, and review them over the Model Context Protocol.", "type": "module", "license": "MIT", "homepage": "https://artifyde.com", "repository": { "type": "git", "url": "git+https://github.com/kennethkoontz/artifyde-mcp.git" }, "bugs": { "url": "https://github.com/kennethkoontz/artifyde-mcp/issues" }, "bin": { "artifyde-mcp": "dist/index.js" }, "files": [ "dist", "README.md" ], "engines": { "node": ">=18" }, "keywords": [ "artifyde", "mcp", "model-context-protocol", "html", "artifacts", "agents" ], "publishConfig": { "access": "public" }, "scripts": { "start": "bun run src/index.ts", "test": "bun test", "build": "bun build src/index.ts --target=node --format=esm --outfile=dist/index.js", "release:check": "bun run scripts/release-check.ts", "prepack": "bun run release:check && bun run build", "release": "bun publish --access public", "typecheck": "tsc -p tsconfig.json --noEmit", "bundle": "bun run build && rm -rf .mcpb-build && mkdir -p .mcpb-build/server && cp dist/index.js .mcpb-build/server/index.js && cp manifest.json .mcpb-build/manifest.json && cp assets/logo-512.png .mcpb-build/icon.png && npx --yes @anthropic-ai/mcpb pack .mcpb-build artifyde-mcp.mcpb" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "zod": "^3.25.0" }, "devDependencies": { "@types/node": "^22.10.5", "bun-types": "^1.3.14", "typescript": "^5.7.3" } }