-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add Antigravity CLI plugin.json and mcp_config.json #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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}" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "name": "ping-identity", | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor/consistency: this declares |
||
| "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" | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor: the
davinciserver here only passesDAVINCI_MCP_ENVIRONMENT_ID, whereas bothclaude-mcp.jsonandcursor-mcp.jsonalso passAUTHORIZATION_CODE_CLIENT_ID,ROOT_DOMAIN, andCUSTOM_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 (theaicblock matches the others exactly) — suggest copying the full 4-varenvfromclaude-mcp.json:(env-var names if you go the
${env:...}route instead.)