package.json•1.92 kB
{
  "version": "1.0.34",
  "description": "Clado Model Context Protocol Server",
  "name": "@clado-ai/mcp",
  "type": "module",
  "module": "src/index.ts",
  "bin": {
    "clado-mcp": "dist/server.js"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "npx @smithery/cli build",
    "build:original": "rm -rf dist && tsc && node -e \"require('fs').chmodSync('dist/server.js', '755')\"",
    "dev": "npx @smithery/cli dev",
    "start": "node dist/server.js --sse",
    "test": "ts-node test-all-functions.ts",
    "test:live": "RUN_LIVE_TESTS=true ts-node test-all-functions.ts",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write .",
    "build-resources": "node --loader ts-node/esm scripts/build_resources.ts && cp summarized.json src/resources/static/data/summarized.json && rm summarized.json && rm static_data.json",
    "prepare": "npm run build:original",
    "release": "rm -rf dist && rm -rf node_modules && npm i && npm run build:original && npm publish"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.6.0",
    "ajv": "^8.17.1",
    "axios": "^1.8.3",
    "dotenv": "^16.4.7",
    "express": "^4.21.2",
    "node-fetch": "^2.7.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/express": "^5.0.0",
    "@types/node": "^16.11.7",
    "openai": "^4.87.3",
    "ts-node": "^10.9.2",
    "typescript": "^4.5.2"
  },
  "keywords": [
    "mcp",
    "clado",
    "web-scraping",
    "crawler",
    "content-extraction"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/clado-ai/search-mcp.git"
  },
  "types": "./dist/server.d.ts",
  "bugs": {
    "url": "https://github.com/clado-ai/search-mcp/issues"
  },
  "homepage": "https://github.com/clado-ai/search-mcp#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "license": "MIT"
}