{ "name": "ap-mcp-server", "mcpName": "io.github.rbonestell/ap-mcp-server", "version": "1.2.6", "description": "Model Context Protocol (MCP) server for the Associated Press Media API", "main": "dist/index.js", "bin": { "ap-mcp-server": "dist/index.js" }, "type": "module", "scripts": { "build": "tsup", "start": "node dist/index.js", "dev": "npm run build && npm start", "test": "jest", "test:cov": "jest --coverage", "test:watch": "jest --watch", "clean": "rm -rf dist", "lint": "eslint .", "lint:fix": "eslint --fix .", "format": "prettier --write .", "format:check": "prettier --check .", "format:fix": "prettier --write . && eslint --fix ." }, "lint-staged": { "*": "npm run format:fix" }, "keywords": [ "mcp", "model-context-protocol", "associated-press", "ap-api", "news-api", "media-api", "typescript", "journalism", "news", "newswire", "press", "api-server", "ai-integration", "content-syndication", "breaking-news", "wire-service", "news-feed", "media-integration" ], "author": "Bobby Bonestell", "license": "MIT", "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.17.4", "zod": "^3.25.76" }, "devDependencies": { "@stylistic/eslint-plugin": "^5.3.1", "@types/jest": "^30.0.0", "@types/node": "^24.3.0", "@typescript-eslint/eslint-plugin": "^8.41.0", "@typescript-eslint/parser": "^8.41.0", "eslint": "^9.34.0", "eslint-config-prettier": "^10.1.8", "jest": "^30.1.2", "lint-staged": "^16.1.6", "prettier": "^3.6.2", "ts-jest": "^29.4.1", "tsup": "^8.5.0", "typescript": "^5.9.2", "typescript-eslint": "^8.41.0" }, "repository": { "type": "git", "url": "https://github.com/rbonestell/ap-mcp-server.git" }, "bugs": { "url": "https://github.com/rbonestell/ap-mcp-server/issues" }, "homepage": "https://github.com/rbonestell/ap-mcp-server#readme", "files": [ "dist/index.js", "README.md", "LICENSE" ], "exports": { ".": { "import": "./dist/index.js" } }, "sideEffects": false, "publishConfig": { "access": "public" } }