package.json•834 B
{
"name": "mcp-troubleshooter",
"version": "1.0.0",
"description": "MCP server for self-diagnostic capabilities, allowing AI models to troubleshoot MCP issues",
"type": "module",
"main": "build/index.js",
"bin": {
"mcp-troubleshooter": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"model-context-protocol",
"troubleshooter",
"diagnostic",
"debugging",
"ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}