This commit is contained in:
2026-07-23 19:58:45 +02:00
parent 32c33156a8
commit 5e8e753b03
4 changed files with 1016 additions and 13 deletions
@@ -0,0 +1,33 @@
{
"name": "grav-mcp",
"displayName": "Grav MCP",
"version": "0.1.0",
"description": "Grav CMS MCP szerver — oldalak, média, konfiguráció, felhasználók, csomagkezelő, scheduler, webhookok és flex objektumok a Grav REST API-n keresztül.",
"author": {
"name": "TTG",
"email": "rastasi@gmail.com"
},
"mcpServers": {
"grav": {
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/server/index.js"],
"env": {
"GRAV_URL": "${user_config.grav_url}",
"GRAV_API_KEY": "${user_config.grav_api_key}"
}
}
},
"userConfig": {
"grav_url": {
"type": "string",
"title": "Grav URL",
"description": "A Grav site alap URL-je, pl. https://example.com (a /api/v1 automatikusan hozzáfűződik)"
},
"grav_api_key": {
"type": "string",
"title": "Grav API kulcs",
"description": "API kulcs a Grav adminban a felhasználónál (vagy POST /api/v1/users/{username}/api-keys)",
"sensitive": true
}
}
}