UNPKG

@mantisware/peepit-mcp

Version:

Give your AI agents super-vision: blazing-fast macOS screenshots, smart window targeting, and local or cloud AI image analysis—all via a friendly Node.js MCP server.

82 lines 2.61 kB
{ "name": "@mantisware/peepit-mcp", "version": "1.0.0-beta.1", "description": "Give your AI agents super-vision: blazing-fast macOS screenshots, smart window targeting, and local or cloud AI image analysis—all via a friendly Node.js MCP server.", "type": "module", "main": "dist/index.js", "bin": { "peepit-mcp": "dist/index.js" }, "files": [ "dist/", "peepit", "README.md", "LICENSE" ], "keywords": [ "mcp", "screen-capture", "macos", "ai-analysis", "image-analysis", "window-management" ], "author": "Waldo Marais <waldo@mantisware.co.za>", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.0", "openai": "^4.0.0", "pino": "^9.7.0", "pino-pretty": "^13.0.0", "zod": "^3.25.28" }, "devDependencies": { "@types/node": "^22.15.21", "@typescript-eslint/eslint-plugin": "^8.19.1", "@typescript-eslint/parser": "^8.19.1", "@vitest/coverage-v8": "^3.1.4", "@vitest/ui": "^3.1.4", "eslint": "^8.57.1", "js-yaml": "^4.1.0", "typescript": "^5.3.0", "vitest": "^3.1.4" }, "engines": { "node": ">=18.0.0" }, "os": [ "darwin" ], "repository": { "type": "git", "url": "git+https://github.com/mantisware/peepit.git" }, "bugs": { "url": "https://github.com/mantisware/peepit/issues" }, "homepage": "https://github.com/mantisware/peepit#readme", "scripts": { "build": "tsc", "build:swift": "./scripts/build-swift-universal.sh", "build:all": "npm run build:swift && npm run build", "start": "node dist/index.js", "dev": "tsc --watch", "clean": "rm -rf dist", "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage", "test:unit": "vitest run tests/unit", "test:typescript": "SKIP_SWIFT_TESTS=true vitest run", "test:typescript:watch": "SKIP_SWIFT_TESTS=true vitest watch", "test:swift": "cd peepit-cli && swift test --parallel --skip \"LocalIntegrationTests|ScreenshotValidationTests|ApplicationFinderTests|WindowManagerTests\"", "test:integration": "npm run build && npm run test:swift && vitest run", "test:all": "npm run test:integration", "lint": "eslint 'src/**/*.ts'", "lint:fix": "eslint 'src/**/*.ts' --fix", "lint:swift": "cd peepit-cli && swiftlint", "format:swift": "cd peepit-cli && swiftformat .", "prepare-release": "node ./scripts/prepare-release.js", "inspector": "npx @modelcontextprotocol/inspector node dist/index.js", "postinstall": "chmod +x dist/index.js 2>/dev/null || true" } }