{
  "name": "@mcpflow.io/mcp-mcp-reasoner",
  "version": "1.0.1",
  "description": "为Claude Desktop 实现的基于系统推理的MCP服务器，采用波束搜索和思维评估。",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "clean": "shx rm -rf dist",
    "prebuild": "npm run clean",
    "test": "jest",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "prepare": "npm run build"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "*",
    "chalk": "^5.3.0",
    "uuid": "^9.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@types/uuid": "^10.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.5.0",
    "prettier": "^3.0.0",
    "shx": "^0.3.4",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.0"
  },
  "keywords": [
    "mcp",
    "reasoning",
    "beam-search",
    "monte-carlo-tree-search",
    "ai",
    "search",
    "mcpflow"
  ],
  "author": "Jacck",
  "license": "MIT License",
  "engines": {
    "node": ">=16.0.0"
  },
  "mcpflow": {
    "originalName": "mcp-reasoner",
    "mcpId": "f8e5c893-a994-45bd-96dc-7b65d02ab58d",
    "developer": "Jacck",
    "gitRepo": "https://github.com/Jacck/mcp-reasoner",
    "callType": "CLI"
  }
}