From 5f1ed35f3bc5d75147dce59a0ea64cbada6f3a6a Mon Sep 17 00:00:00 2001 From: ricksmit3000 Date: Tue, 2 Dec 2025 12:30:55 +0100 Subject: [PATCH] docs: use vscode inputs --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cf97cf6..0fada37 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,23 @@ You can use this directly in the [GitHub Copilot](https://docs.github.com/en/cop "command": "npx", "args": ["@chargetrip/mcp"], "env": { - "CLIENT_ID": "*** YOUR CLIENT ID HERE ***", - "APP_ID": "*** YOUR APP ID HERE ***" + "CLIENT_ID": "${input:chargetrip_client_id}", + "APP_ID": "${input:chargetrip_app_id}" } } }, - "inputs": [] + "inputs": [ + { + "id": "chargetrip_client_id", + "type": "promptString", + "description": "Chargetrip Client ID (x-client-id)" + }, + { + "id": "chargetrip_app_id", + "type": "promptString", + "description": "Chargetrip App ID (x-app-id)" + } + ] } ```