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)" + } + ] } ```