{ "name": "@milcho0604/velog-mcp", "version": "0.9.5", "mcpName": "io.github.milcho0604/velog", "description": "벨로그(velog.io) MCP 서버. 조회와 검색과 통계는 인증 없이 되고, 쓰기는 초안과 비공개 발행이 기본이다. 공개 발행은 VELOG_ALLOW_PUBLIC=1 로 사용자만 켤 수 있다. 문서 없는 벨로그 GraphQL 동작을 실측해 정리했다. 런타임 의존성 2개, Node 22.18+", "type": "module", "main": "./dist/index.js", "bin": { "velog-mcp": "dist/index.js" }, "files": [ "dist", "!dist/**/*.map", "schema", "docs", "README.md", "README.en.md", "CHANGELOG.md", "LICENSE", "npm-shrinkwrap.json" ], "engines": { "node": ">=22.18.0" }, "scripts": { "prebuild": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"", "build": "tsc -p tsconfig.build.json", "postbuild": "node -e \"require('node:fs').chmodSync('dist/index.js',0o755)\"", "verify:dist": "node scripts/verify-dist.ts", "watch": "tsc -p tsconfig.build.json --watch", "typecheck": "tsc --noEmit", "test": "node --test 'src/__tests__/*.test.ts'", "schema:dump": "node scripts/dump-schema.ts", "schema:baseline": "node scripts/build-baseline.ts", "lint": "eslint .", "lint:fix": "eslint . --fix", "verify": "npm run typecheck && npm run lint && npm test && npm run build && npm run verify:dist", "prepublishOnly": "npm run verify" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0", "zod": "^4.4.3" }, "devDependencies": { "@eslint/js": "^10.0.1", "@types/node": "^24.13.3", "@types/semver": "^7.7.1", "eslint": "^10.8.0", "semver": "^7.8.5", "typescript": "^5.9.3", "typescript-eslint": "^8.65.0" }, "keywords": [ "mcp", "model-context-protocol", "velog", "blog", "claude", "벨로그", "한국어", "korean" ], "license": "MIT", "author": "Changhyun Kim (https://github.com/milcho0604)", "repository": { "type": "git", "url": "git+https://github.com/milcho0604/velog-mcp.git" }, "homepage": "https://github.com/milcho0604/velog-mcp#readme" }