{ "name": "@ranchbot/mcp-server", "version": "0.1.0", "description": "MCP server for Ranch.Bot — livestock records for cattle and sheep operations, usable from Claude, Claude Code, and any MCP client.", "mcpName": "bot.ranch/mcp-server", "main": "dist/index.js", "bin": { "ranchbot-mcp": "dist/index.js" }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsc -p tsconfig.build.json", "dev": "tsx watch src/index.ts", "lint": "eslint \"src/**/*.ts\"", "lint:fix": "eslint \"src/**/*.ts\" --fix", "prepublishOnly": "npm run build", "start": "node dist/index.js", "test": "jest --config jest.config.cjs", "test:coverage": "jest --config jest.config.cjs --coverage", "typecheck": "tsc --noEmit", "prettier": "prettier --check \"src/**/*.ts\"", "prettier:fix": "prettier --write \"src/**/*.ts\"" }, "repository": { "type": "git", "url": "git+https://github.com/RanchBot/mcp-server.git" }, "homepage": "https://ranch.bot/connect-your-ai", "keywords": [ "mcp", "model-context-protocol", "livestock", "ranching", "cattle", "sheep", "farm-records", "herd-management" ], "author": "Ranch.Bot ", "license": "MIT", "publishConfig": { "access": "public" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", "axios": "^1.6.7", "dotenv": "^16.4.4", "fs-native-extensions": "1.5.0", "zod": "^3.22.4" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.0.0", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "jest": "^29.7.0", "prettier": "^3.4.2", "ts-jest": "^29.2.5", "tsx": "^4.7.0", "typescript": "^5.3.3" }, "engines": { "node": ">=22" } }