{
  "name": "rhombus-node-mcp",
  "version": "0.1.56",
  "description": "MCP server for Rhombus API",
  "keywords": [
    "ai",
    "rhombus",
    "mcp",
    "modelcontextprotocol"
  ],
  "homepage": "https://modelcontextprotocol.io",
  "bugs": {
    "url": "https://github.com/RhombusSystems/rhombus-node-mcp/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/RhombusSystems/rhombus-node-mcp.git"
  },
  "license": "MIT",
  "author": "Model Context Protocol (https://modelcontextprotocol.io)",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "mcp-server-rhombus": "dist/index.js"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "rm -rf dist && tsc && chmod +x dist/*.js",
    "docker:build": "docker build -t rhombussystems/mcp-server-rhombus .",
    "start": "node dist/index.js",
    "start:http": "TRANSPORT_TYPE=streamable-http node dist/index.js",
    "start:stdio": "TRANSPORT_TYPE=stdio node dist/index.js",
    "prepare": "npm run build",
    "test": "vitest run",
    "test:watch": "vitest",
    "watch": "npm run clean && tsc --watch",
    "generate-schemas": "npx tsx scripts/generate-zod-schemas.ts",
    "scrape-sitemaps": "npx tsx scripts/scrape-sitemaps.ts",
    "scrape-content": "npx tsx scripts/scrape-content.ts",
    "scrape-progress": "npx tsx scripts/scrape-content.ts --progress",
    "generate-embeddings": "npx tsx scripts/generate-embeddings.ts",
    "embedding-progress": "npx tsx scripts/generate-embeddings.ts --progress",
    "estimate-cost": "npx tsx scripts/generate-embeddings.ts --estimate-only",
    "build-faiss-index": "npx tsx scripts/build-faiss-index.ts",
    "extract-route-outputs": "npx tsx assets/extract-route-outputs.ts",
    "create:tool": "tsx scripts/create-new-tool.ts"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.27.1",
    "axios": "^1.11.0",
    "cheerio": "^1.1.2",
    "chrono-node": "^2.8.0",
    "cors": "^2.8.5",
    "dotenv": "^16.5.0",
    "express": "^5.1.0",
    "faiss-node": "^0.5.1",
    "langchain": "^0.3.30",
    "log4js": "^6.9.1",
    "luxon": "^3.6.1",
    "openai": "^6.32.0",
    "tiktoken": "^1.0.21",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@opentelemetry/api": "^1.9.0",
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.3",
    "@types/luxon": "^3.6.2",
    "@types/node": "^22.14.0",
    "openapi-typescript-codegen": "^0.29.0",
    "openapi-zod-client": "^1.17.0",
    "prettier": "3.5.3",
    "typescript": "^5.8.3",
    "vitest": "^4.1.4"
  },
  "engines": {
    "node": ">=18"
  },
  "peerDependencies": {
    "@opentelemetry/api": "^1.9.0"
  },
  "peerDependenciesMeta": {
    "@opentelemetry/api": {
      "optional": true
    }
  }
}
