{ "name": "@parseable/parseable-mcp-server", "version": "0.2.16", "mcpName": "io.github.parseablehq/parseable-mcp-server", "description": "Model Context Protocol server for Parseable. Lets LLMs discover and query Parseable datasets.", "repository": { "type": "git", "url": "git+https://github.com/parseablehq/parseable-mcp-server.git" }, "license": "Apache-2.0", "type": "module", "bin": { "parseable-mcp-server": "dist/server.js" }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc && chmod +x dist/server.js", "build:ui": "vite build", "build:all": "npm run build:ui && npm run build", "dev": "tsc --watch", "dev:ui": "vite", "start": "node dist/server.js", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "biome check src test", "format": "biome format --write src test", "fix": "biome check --write src test", "prepublishOnly": "npm run build && npm run lint && npm test" }, "dependencies": { "@hono/node-server": "^2.0.12", "@modelcontextprotocol/sdk": "^1.29.0", "dotenv": "^16.6.1", "hono": "^4.12.32", "inquirer": "^13.4.3", "jose": "^6.2.4", "lru-cache": "^11.5.2", "zod": "^3.25.76" }, "devDependencies": { "@biomejs/biome": "^2.5.5", "@tabler/icons-react": "^3.45.0", "@tailwindcss/vite": "^4.3.3", "@types/inquirer": "^9.0.10", "@types/node": "^22.20.1", "@types/react": "^19.2.17", "@types/react-dom": "^19.2.3", "@vitejs/plugin-react": "^6.0.4", "@vitest/coverage-v8": "^4.1.10", "react": "^19.2.8", "react-dom": "^19.2.8", "tailwindcss": "^4.3.3", "typescript": "^5.9.3", "vite": "^8.1.5", "vitest": "^4.1.10" }, "engines": { "node": ">=18" }, "publishConfig": { "access": "public" } }