Add mcp-manifest-generate CLI tool to reverse-engineer manifests from Claude Code settings.json. Infers install methods from command patterns (npx→npm, uvx→pip, .exe→dotnet-tool). Converts --flag args to typed config entries (--api-key→secret). Supports --probe flag to run MCP handshake for real server name/version. Add interactive --init wizard mode. Update schema with additional validation rules. Add comprehensive CLI help and examples to README
42 lines
895 B
JSON
42 lines
895 B
JSON
{
|
|
"name": "mcp-manifest-validate",
|
|
"version": "0.1.0",
|
|
"description": "Validate mcp-manifest.json files and test autodiscovery from domains",
|
|
"type": "module",
|
|
"bin": {
|
|
"mcp-manifest-validate": "./bin/cli.js",
|
|
"mcp-manifest-generate": "./bin/generate.js"
|
|
},
|
|
"main": "./src/index.js",
|
|
"exports": {
|
|
".": "./src/index.js",
|
|
"./generate": "./src/generate.js"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"src/",
|
|
"schema/"
|
|
],
|
|
"scripts": {
|
|
"test": "node --test src/*.test.js"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"manifest",
|
|
"validate",
|
|
"model-context-protocol",
|
|
"autodiscovery"
|
|
],
|
|
"author": "mcp-manifest",
|
|
"license": "CC0-1.0",
|
|
"homepage": "https://mcp-manifest.dev",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.marketally.com/mcp-manifest/validate"
|
|
},
|
|
"dependencies": {
|
|
"ajv": "^8.17.0",
|
|
"ajv-formats": "^3.0.0"
|
|
}
|
|
}
|