{ "name": "ithura-mcp", "version": "1.0.1", "mcpName": "com.ithura/mcp", "description": "Model Context Protocol server for Ithura, the quiet project management workspace. Gives Claude, Cursor, and other MCP clients read and write access to tasks, sprints, projects, modules, wiki pages, and intake.", "keywords": [ "ithura", "mcp", "model-context-protocol", "modelcontextprotocol", "claude", "cursor", "project-management", "task-management", "sprints", "agile", "issue-tracker", "ai-agent", "llm-tools" ], "homepage": "https://ithura.com", "repository": { "type": "git", "url": "git+https://github.com/Ithura/ithura-mcp.git" }, "bugs": { "url": "https://github.com/Ithura/ithura-mcp/issues" }, "license": "MIT", "author": "Ithura", "type": "module", "bin": { "ithura-mcp": "dist/index.js" }, "main": "dist/index.js", "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=18" }, "scripts": { "build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --packages=external --outfile=dist/index.js --banner:js='#!/usr/bin/env node'", "start": "node dist/index.js", "dev": "tsx src/index.ts", "prepublishOnly": "npm run build", "typecheck": "tsc --noEmit" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.12.1", "zod": "^3.24.2" }, "devDependencies": { "@types/node": "^22.10.0", "esbuild": "^0.28.2", "tsx": "^4.19.4", "typescript": "^5.7.3" }, "publishConfig": { "access": "public" } }