Glif

Official
{ "name": "glif-mcp-server", "version": "0.9.3", "description": "Run AI magic workflows from glif.app", "license": "MIT", "type": "module", "bin": { "glif-server": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "prepare": "npm run build", "typecheck": "tsc --noEmit", "lint": "npm run typecheck", "watch": "tsc --watch", "test": "GLIF_API_TOKEN=xxx IGNORE_DISCOVERY_TOOLS=true vitest run", "inspector": "npx @modelcontextprotocol/inspector -e GLIF_API_TOKEN=xxx node build/index.js", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "logs:claude": "tail -f -n 5 ~/Library/Logs/Claude/**glif*.log", "logs:claude_all": "tail -f -n 5 ~/Library/Logs/Claude/**.log", "release": "BRANCH=$(git branch --show-current) && [ \"$BRANCH\" = \"main\" ] || (echo \"Error: Must be on main branch to release\" && exit 1) && VERSION=$(jq -r .version package.json) && REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner) && git tag v$VERSION && git push origin --tags && PREV_TAG=$(git describe --tags --abbrev=0 v$VERSION^ 2>/dev/null || echo '') && NOTES=$(git log --pretty=format:\"- [%h](https://github.com/$REPO/commit/%H) %s\" ${PREV_TAG:+$PREV_TAG..}HEAD) && gh release create v$VERSION --fail-on-no-commits --notes \"$NOTES\"" }, "dependencies": { "@modelcontextprotocol/sdk": "1.6.1", "wretch": "^2.11.0", "zod": "^3.24.2" }, "devDependencies": { "@types/node": "^22.13.9", "@vitest/coverage-v8": "^3.0.7", "typescript": "^5.8.2", "vitest": "^3.0.7" } }