manifest.json•857 B
{
"dxt_version": "0.1",
"name": "json-mcp-server",
"version": "1.0.0",
"description": "MCP server providing JSON querying, schema generation, and validation tools",
"author": {
"name": "Eric Berry (eric@berrydev.ai)"
},
"server": {
"mcp_config": {
"command": "npx",
"args": [
"${__dirname}/index.js"
],
"env": {}
}
},
"tools": [
{
"name": "generate_json_schema",
"description": "Generate a JSON schema from a JSON file "
},
{
"name": "validate_json_schema",
"description": "Validate a JSON file against a JSON schema"
},
{
"name": "query_json",
"description": "Query JSON data using jq notation."
}
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/berrydev-ai/json-mcp-server.git"
}
}