Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions plugins/ping-identity/mcp_config.json
Original file line number Diff line number Diff line change
@@ -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}"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor: the davinci server here only passes DAVINCI_MCP_ENVIRONMENT_ID, whereas both claude-mcp.json and cursor-mcp.json also pass AUTHORIZATION_CODE_CLIENT_ID, ROOT_DOMAIN, and CUSTOM_DOMAIN. Without the client ID + domain, the DaVinci server won't authenticate / will default the region for any non-standard tenant. Looks like an accidental trim (the aic block matches the others exactly) — suggest copying the full 4-var env from claude-mcp.json:

"env": {
  "DAVINCI_MCP_ENVIRONMENT_ID": "${user_config.davinci_environment_id}",
  "AUTHORIZATION_CODE_CLIENT_ID": "${user_config.davinci_client_id}",
  "ROOT_DOMAIN": "${user_config.davinci_root_domain}",
  "CUSTOM_DOMAIN": "${user_config.davinci_custom_domain}"
}

(env-var names if you go the ${env:...} route instead.)

}
}
}
}
11 changes: 11 additions & 0 deletions plugins/ping-identity/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "ping-identity",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor/consistency: this declares "name": "ping-identity", while .claude-plugin and .cursor-plugin both use "ping-identity-agent-plugins". If Antigravity keys off the directory name this is fine — but if the plugin identifier matters for how it's referenced/configured, worth aligning with the other two variants for consistency.

"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"
}