@team-jd/mcp-project-explorer
Version:
An MCP server for exploring project folders and analyzing imports/exports.
33 lines (32 loc) • 925 B
JSON
{
"name": "@team-jd/mcp-project-explorer",
"version": "0.1.0",
"description": "An MCP server for exploring project folders and analyzing imports/exports.",
"keywords": ["mcp", "model-context-protocol", "file-explorer", "project-analyzer"],
"author": "Noah Jansky <noah.jansky@outlook.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MausRundung362/mcp-explorer.git"
},
"type": "module",
"bin": {
"project-explorer": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
},
"devDependencies": {
"@types/node": "^22.15.29",
"typescript": "^5.3.3"
}
}