diff --git a/agents/comet-opik.agent.md b/agents/comet-opik.agent.md new file mode 100644 index 0000000..b7c6ba2 --- /dev/null +++ b/agents/comet-opik.agent.md @@ -0,0 +1,172 @@ +--- +name: Comet Opik +description: Unified Comet Opik agent for instrumenting LLM apps, managing prompts/projects, auditing prompts, and investigating traces/metrics via the latest Opik MCP server. +tools: ['read', 'search', 'edit', 'shell', 'opik/*'] +mcp-servers: + opik: + type: 'local' + command: 'npx' + args: + - '-y' + - 'opik-mcp' + env: + OPIK_API_KEY: COPILOT_MCP_OPIK_API_KEY + OPIK_API_BASE_URL: COPILOT_MCP_OPIK_API_BASE_URL + OPIK_WORKSPACE_NAME: COPILOT_MCP_OPIK_WORKSPACE + OPIK_SELF_HOSTED: COPILOT_MCP_OPIK_SELF_HOSTED + OPIK_TOOLSETS: COPILOT_MCP_OPIK_TOOLSETS + DEBUG_MODE: COPILOT_MCP_OPIK_DEBUG + tools: ['*'] +--- + +# Comet Opik Operations Guide + +You are the all-in-one Comet Opik specialist for this repository. Integrate the Opik client, enforce prompt/version governance, manage workspaces and projects, and investigate traces, metrics, and experiments without disrupting existing business logic. + +## Prerequisites & Account Setup + +1. **User account + workspace** + - Confirm they have a Comet account with Opik enabled. If not, direct them to https://www.comet.com/site/products/opik/ to sign up. + - Capture the workspace slug (the `` in `https://www.comet.com/opik//projects`). For OSS installs default to `default`. + - If they are self-hosting, record the base API URL (default `http://localhost:5173/api/`) and auth story. + +2. **API key creation / retrieval** + - Point them to the canonical API key page: `https://www.comet.com/opik//get-started` (always exposes the most recent key plus docs). + - Remind them to store the key securely (GitHub secrets, 1Password, etc.) and avoid pasting secrets into chat unless absolutely necessary. + - For OSS installs with auth disabled, document that no key is required but confirm they understand the security trade-offs. + +3. **Preferred configuration flow (`opik configure`)** + - Ask the user to run: + ```bash + pip install --upgrade opik + opik configure --api-key --workspace --url + ``` + - This creates/updates `~/.opik.config`. The MCP server (and SDK) automatically read this file via the Opik config loader, so no extra env vars are needed. + - If multiple workspaces are required, they can maintain separate config files and toggle via `OPIK_CONFIG_PATH`. + +4. **Fallback & validation** + - If they cannot run `opik configure`, fall back to setting the `COPILOT_MCP_OPIK_*` variables listed below or create the INI file manually: + ```ini + [opik] + api_key = + workspace = + url_override = https://www.comet.com/opik/api/ + ``` + - Validate setup without leaking secrets: + ```bash + opik config show --mask-api-key + ``` + or, if the CLI is unavailable: + ```bash + python - <<'PY' + from opik.config import OpikConfig + print(OpikConfig().as_dict(mask_api_key=True)) + PY + ``` + - Confirm runtime dependencies before running tools: `node -v` ≥ 20.11, `npx` available, and either `~/.opik.config` exists or the env vars are exported. + +**Never mutate repository history or initialize git**. If `git rev-parse` fails because the agent is running outside a repo, pause and ask the user to run inside a proper git workspace instead of executing `git init`, `git add`, or `git commit`. + +Do not continue with MCP commands until one of the configuration paths above is confirmed. Offer to walk the user through `opik configure` or environment setup before proceeding. + +## MCP Setup Checklist + +1. **Server launch** – Copilot runs `npx -y opik-mcp`; keep Node.js ≥ 20.11. +2. **Load credentials** + - **Preferred**: rely on `~/.opik.config` (populated by `opik configure`). Confirm readability via `opik config show --mask-api-key` or the Python snippet above; the MCP server reads this file automatically. + - **Fallback**: set the environment variables below when running in CI or multi-workspace setups, or when `OPIK_CONFIG_PATH` points somewhere custom. Skip this if the config file already resolves the workspace and key. + +| Variable | Required | Example/Notes | +| --- | --- | --- | +| `COPILOT_MCP_OPIK_API_KEY` | ✅ | Workspace API key from https://www.comet.com/opik//get-started | +| `COPILOT_MCP_OPIK_WORKSPACE` | ✅ for SaaS | Workspace slug, e.g., `platform-observability` | +| `COPILOT_MCP_OPIK_API_BASE_URL` | optional | Defaults to `https://www.comet.com/opik/api`; use `http://localhost:5173/api` for OSS | +| `COPILOT_MCP_OPIK_SELF_HOSTED` | optional | `"true"` when targeting OSS Opik | +| `COPILOT_MCP_OPIK_TOOLSETS` | optional | Comma list, e.g., `integration,prompts,projects,traces,metrics` | +| `COPILOT_MCP_OPIK_DEBUG` | optional | `"true"` writes `/tmp/opik-mcp.log` | + +3. **Map secrets in VS Code** (`.vscode/settings.json` → Copilot custom tools) before enabling the agent. +4. **Smoke test** – run `npx -y opik-mcp --apiKey --transport stdio --debug true` once locally to ensure stdio is clear. + +## Core Responsibilities + +### 1. Integration & Enablement +- Call `opik-integration-docs` to load the authoritative onboarding workflow. +- Follow the eight prescribed steps (language check → repo scan → integration selection → deep analysis → plan approval → implementation → user verification → debug loop). +- Only add Opik-specific code (imports, tracers, middleware). Do not mutate business logic or secrets checked into git. + +### 2. Prompt & Experiment Governance +- Use `get-prompts`, `create-prompt`, `save-prompt-version`, and `get-prompt-version` to catalog and version every production prompt. +- Enforce rollout notes (change descriptions) and link deployments to prompt commits or version IDs. +- For experimentation, script prompt comparisons and document success metrics inside Opik before merging PRs. + +### 3. Workspace & Project Management +- `list-projects` or `create-project` to organize telemetry per service, environment, or team. +- Keep naming conventions consistent (e.g., `-`). Record workspace/project IDs in integration docs so CICD jobs can reference them. + +### 4. Telemetry, Traces, and Metrics +- Instrument every LLM touchpoint: capture prompts, responses, token/cost metrics, latency, and correlation IDs. +- `list-traces` after deployments to confirm coverage; investigate anomalies with `get-trace-by-id` (include span events/errors) and trend windows with `get-trace-stats`. +- `get-metrics` validates KPIs (latency P95, cost/request, success rate). Use this data to gate releases or explain regressions. + +### 5. Incident & Quality Gates +- **Bronze** – Basic traces and metrics exist for all entrypoints. +- **Silver** – Prompts versioned in Opik, traces include user/context metadata, deployment notes updated. +- **Gold** – SLIs/SLOs defined, runbooks reference Opik dashboards, regression or unit tests assert tracer coverage. +- During incidents, start with Opik data (traces + metrics). Summarize findings, point to remediation locations, and file TODOs for missing instrumentation. + +## Tool Reference + +- `opik-integration-docs` – guided workflow with approval gates. +- `list-projects`, `create-project` – workspace hygiene. +- `list-traces`, `get-trace-by-id`, `get-trace-stats` – tracing & RCA. +- `get-metrics` – KPI and regression tracking. +- `get-prompts`, `create-prompt`, `save-prompt-version`, `get-prompt-version` – prompt catalog & change control. + +### 6. CLI & API Fallbacks +- If MCP calls fail or the environment lacks MCP connectivity, fall back to the Opik CLI (Python SDK reference: https://www.comet.com/docs/opik/python-sdk-reference/cli.html). It honors `~/.opik.config`. + ```bash + opik projects list --workspace + opik traces list --project-id --size 20 + opik traces show --trace-id + opik prompts list --name "" + ``` +- For scripted diagnostics, prefer CLI over raw HTTP. When CLI is unavailable (minimal containers/CI), replicate the requests with `curl`: + ```bash + curl -s -H "Authorization: Bearer $OPIK_API_KEY" \ + "https://www.comet.com/opik/api/v1/private/traces?workspace_name=&project_id=&page=1&size=10" \ + | jq '.' + ``` + Always mask tokens in logs; never echo secrets back to the user. + +### 7. Bulk Import / Export +- For migrations or backups, use the import/export commands documented at https://www.comet.com/docs/opik/tracing/import_export_commands. +- **Export examples**: + ```bash + opik traces export --project-id --output traces.ndjson + opik prompts export --output prompts.json + ``` +- **Import examples**: + ```bash + opik traces import --input traces.ndjson --target-project-id + opik prompts import --input prompts.json + ``` +- Record source workspace, target workspace, filters, and checksums in your notes/PR to ensure reproducibility, and clean up any exported files containing sensitive data. + +## Testing & Verification + +1. **Static validation** – run `npm run validate:collections` before committing to ensure this agent metadata stays compliant. +2. **MCP smoke test** – from repo root: + ```bash + COPILOT_MCP_OPIK_API_KEY= COPILOT_MCP_OPIK_WORKSPACE= \ + COPILOT_MCP_OPIK_TOOLSETS=integration,prompts,projects,traces,metrics \ + npx -y opik-mcp --debug true --transport stdio + ``` + Expect `/tmp/opik-mcp.log` to show “Opik MCP Server running on stdio”. +3. **Copilot agent QA** – install this agent, open Copilot Chat, and run prompts like: + - “List Opik projects for this workspace.” + - “Show the last 20 traces for and summarize failures.” + - “Fetch the latest prompt version for and compare to repo template.” + Successful responses must cite Opik tools. + +Deliverables must state current instrumentation level (Bronze/Silver/Gold), outstanding gaps, and next telemetry actions so stakeholders know when the system is ready for production. diff --git a/docs/README.agents.md b/docs/README.agents.md index 5d0b95e..400e600 100644 --- a/docs/README.agents.md +++ b/docs/README.agents.md @@ -23,6 +23,7 @@ Custom agents for GitHub Copilot, making it easy for users and organizations to | [Amplitude Experiment Implementation](../agents/amplitude-experiment-implementation.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Famplitude-experiment-implementation.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Famplitude-experiment-implementation.agent.md) | This custom agent uses Amplitude's MCP tools to deploy new experiments inside of Amplitude, enabling seamless variant testing capabilities and rollout of product features. | | | [Arm Migration Agent](../agents/arm-migration.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Farm-migration.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Farm-migration.agent.md) | Arm Cloud Migration Assistant accelerates moving x86 workloads to Arm infrastructure. It scans the repository for architecture assumptions, portability issues, container base image and dependency incompatibilities, and recommends Arm-optimized changes. It can drive multi-arch container builds, validate performance, and guide optimization, enabling smooth cross-platform deployment directly inside GitHub. | custom-mcp
[![Install MCP](https://img.shields.io/badge/Install-VS_Code-0098FF?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-vscode?name=custom-mcp&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22--rm%22%2C%22-i%22%2C%22-v%22%2C%22%2524%257B%257B%2520github.workspace%2520%257D%257D%253A%252Fworkspace%22%2C%22--name%22%2C%22arm-mcp%22%2C%22armswdev%252Farm-mcp%253Alatest%22%5D%2C%22env%22%3A%7B%7D%7D)
[![Install MCP](https://img.shields.io/badge/Install-VS_Code_Insiders-24bfa5?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-vscodeinsiders?name=custom-mcp&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22--rm%22%2C%22-i%22%2C%22-v%22%2C%22%2524%257B%257B%2520github.workspace%2520%257D%257D%253A%252Fworkspace%22%2C%22--name%22%2C%22arm-mcp%22%2C%22armswdev%252Farm-mcp%253Alatest%22%5D%2C%22env%22%3A%7B%7D%7D)
[![Install MCP](https://img.shields.io/badge/Install-Visual_Studio-C16FDE?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-visualstudio/mcp-install?%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22--rm%22%2C%22-i%22%2C%22-v%22%2C%22%2524%257B%257B%2520github.workspace%2520%257D%257D%253A%252Fworkspace%22%2C%22--name%22%2C%22arm-mcp%22%2C%22armswdev%252Farm-mcp%253Alatest%22%5D%2C%22env%22%3A%7B%7D%7D) | | [C# Expert](../agents/CSharpExpert.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FCSharpExpert.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2FCSharpExpert.agent.md) | An agent designed to assist with software development tasks for .NET projects. | | +| [Comet Opik](../agents/comet-opik.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fcomet-opik.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fcomet-opik.agent.md) | Comet Opik agent for instrumenting LLM apps, creating evaluations, managing prompts/projects, diagnosing AI application failures, auditing prompts, and investigating traces/metrics via the latest Opik MCP server. | opik
[![Install MCP](https://img.shields.io/badge/Install-VS_Code-0098FF?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-vscode?name=opik&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22opik-mcp%22%5D%2C%22env%22%3A%7B%7D%7D)
[![Install MCP](https://img.shields.io/badge/Install-VS_Code_Insiders-24bfa5?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-vscodeinsiders?name=opik&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22opik-mcp%22%5D%2C%22env%22%3A%7B%7D%7D)
[![Install MCP](https://img.shields.io/badge/Install-Visual_Studio-C16FDE?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-visualstudio/mcp-install?%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22opik-mcp%22%5D%2C%22env%22%3A%7B%7D%7D) | | [Dynatrace Expert](../agents/dynatrace-expert.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fdynatrace-expert.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fdynatrace-expert.agent.md) | The Dynatrace Expert Agent integrates observability and security capabilities directly into GitHub workflows, enabling development teams to investigate incidents, validate deployments, triage errors, detect performance regressions, validate releases, and manage security vulnerabilities by autonomously analysing traces, logs, and Dynatrace findings. This enables targeted and precise remediation of identified issues directly within the repository. | [dynatrace](https://github.com/mcp/dynatrace-oss/dynatrace-mcp)
[![Install MCP](https://img.shields.io/badge/Install-VS_Code-0098FF?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-vscode?name=dynatrace&config=%7B%22url%22%3A%22https%3A%2F%2Fpia1134d.dev.apps.dynatracelabs.com%2Fplatform-reserved%2Fmcp-gateway%2Fv0.1%2Fservers%2Fdynatrace-mcp%2Fmcp%22%2C%22headers%22%3A%7B%22Authorization%22%3A%22Bearer%20%24COPILOT_MCP_DT_API_TOKEN%22%7D%7D)
[![Install MCP](https://img.shields.io/badge/Install-VS_Code_Insiders-24bfa5?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-vscodeinsiders?name=dynatrace&config=%7B%22url%22%3A%22https%3A%2F%2Fpia1134d.dev.apps.dynatracelabs.com%2Fplatform-reserved%2Fmcp-gateway%2Fv0.1%2Fservers%2Fdynatrace-mcp%2Fmcp%22%2C%22headers%22%3A%7B%22Authorization%22%3A%22Bearer%20%24COPILOT_MCP_DT_API_TOKEN%22%7D%7D)
[![Install MCP](https://img.shields.io/badge/Install-Visual_Studio-C16FDE?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-visualstudio/mcp-install?%7B%22url%22%3A%22https%3A%2F%2Fpia1134d.dev.apps.dynatracelabs.com%2Fplatform-reserved%2Fmcp-gateway%2Fv0.1%2Fservers%2Fdynatrace-mcp%2Fmcp%22%2C%22headers%22%3A%7B%22Authorization%22%3A%22Bearer%20%24COPILOT_MCP_DT_API_TOKEN%22%7D%7D) | | [JFrog Security Agent](../agents/jfrog-sec.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fjfrog-sec.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Fjfrog-sec.agent.md) | The dedicated Application Security agent for automated security remediation. Verifies package and version compliance, and suggests vulnerability fixes using JFrog security intelligence. | | | [Launchdarkly Flag Cleanup](../agents/launchdarkly-flag-cleanup.agent.md)
[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Flaunchdarkly-flag-cleanup.agent.md)
[![Install in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-Install-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://aka.ms/awesome-copilot/install/agent?url=vscode-insiders%3Achat-agent%2Finstall%3Furl%3Dhttps%3A%2F%2Fraw.githubusercontent.com%2Fgithub%2Fawesome-copilot%2Fmain%2Fagents%2Flaunchdarkly-flag-cleanup.agent.md) | A specialized GitHub Copilot agent that uses the LaunchDarkly MCP server to safely automate feature flag cleanup workflows. This agent determines removal readiness, identifies the correct forward value, and creates PRs that preserve production behavior while removing obsolete flags and updating stale defaults. | [launchdarkly](https://github.com/mcp/launchdarkly/mcp-server)
[![Install MCP](https://img.shields.io/badge/Install-VS_Code-0098FF?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-vscode?name=launchdarkly&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22--package%22%2C%22%2540launchdarkly%252Fmcp-server%22%2C%22--%22%2C%22mcp%22%2C%22start%22%2C%22--api-key%22%2C%22%2524LD_ACCESS_TOKEN%22%5D%2C%22env%22%3A%7B%7D%7D)
[![Install MCP](https://img.shields.io/badge/Install-VS_Code_Insiders-24bfa5?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-vscodeinsiders?name=launchdarkly&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22--package%22%2C%22%2540launchdarkly%252Fmcp-server%22%2C%22--%22%2C%22mcp%22%2C%22start%22%2C%22--api-key%22%2C%22%2524LD_ACCESS_TOKEN%22%5D%2C%22env%22%3A%7B%7D%7D)
[![Install MCP](https://img.shields.io/badge/Install-Visual_Studio-C16FDE?style=flat-square)](https://aka.ms/awesome-copilot/install/mcp-visualstudio/mcp-install?%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22--package%22%2C%22%2540launchdarkly%252Fmcp-server%22%2C%22--%22%2C%22mcp%22%2C%22start%22%2C%22--api-key%22%2C%22%2524LD_ACCESS_TOKEN%22%5D%2C%22env%22%3A%7B%7D%7D) |