diff --git a/plugins/ping-identity/mcp_config.json b/plugins/ping-identity/mcp_config.json new file mode 100644 index 0000000..c7f93c4 --- /dev/null +++ b/plugins/ping-identity/mcp_config.json @@ -0,0 +1,18 @@ +{ + "mcpServers": { + "aic": { + "command": "npx", + "args": ["-y", "@ping-identity/aic-mcp-server"], + "env": { + "AIC_BASE_URL": "${user_config.aic_base_url}" + } + }, + "davinci": { + "command": "npx", + "args": ["-y", "@ping-identity/davinci-mcp-server", "start"], + "env": { + "DAVINCI_MCP_ENVIRONMENT_ID": "${user_config.davinci_environment_id}" + } + } + } +} diff --git a/plugins/ping-identity/plugin.json b/plugins/ping-identity/plugin.json new file mode 100644 index 0000000..ba9406d --- /dev/null +++ b/plugins/ping-identity/plugin.json @@ -0,0 +1,11 @@ +{ + "name": "ping-identity", + "version": "1.0.0", + "description": "Agent plugin for Ping Identity — teach the Antigravity CLI how to build with Ping Identity.", + "author": { + "name": "Ping Identity", + "email": "devex@pingidentity.com" + }, + "skills": "./skills/", + "mcpServers": "./mcp_config.json" +}