mcpb.jsonโข855 B
{
"name": "notepadpp-mcp",
"version": "1.2.0",
"description": "Comprehensive Notepad++ automation with 26 tools including plugin management, display fixes, and code quality analysis",
"author": "Sandra Schi",
"license": "MIT",
"outputDir": "dist",
"mcp": {
"version": "2.12.0",
"server": {
"command": "python",
"args": ["-m", "notepadpp_mcp.tools.server"],
"transport": "stdio"
},
"capabilities": {
"tools": true,
"resources": false,
"prompts": false
}
},
"dependencies": {
"python": ">=3.10.0",
"fastmcp": ">=2.12.0"
},
"build": {
"command": "python -m build",
"outputDir": "dist"
},
"scripts": {
"test": "python -m pytest",
"lint": "python -m black --check src/ && python -m isort --check-only src/",
"type-check": "python -m mypy src/"
}
}