0e82802f0c
Embeds an MCP server in mcp/ that exposes MokoStandards CLI tools as AI assistant tools: platform detection, repo health checks, validation (structure, headers, secrets, changelog, version consistency, enterprise readiness, drift scan), Joomla/Dolibarr-specific checks, definitions browser, policy/guide reader, and release notes generation. Also adds McpServerPlugin, MCP platform detection, and MCP workflow templates. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
707 B
JSON
30 lines
707 B
JSON
{
|
|
"name": "@mokoconsulting/mokostandards-mcp",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for MokoStandards governance — validation, compliance, platform detection, definitions browser",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"mokostandards-mcp": "dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/index.js",
|
|
"clean": "rm -rf dist/"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"zod": "^3.24.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.15.3",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"license": "GPL-3.0-or-later",
|
|
"author": "Moko Consulting <hello@mokoconsulting.tech>"
|
|
}
|