troxy-cli 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/init.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "troxy-cli",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "AI payment control — protect your agent's payments with policies",
5
5
  "type": "module",
6
6
  "bin": {
package/src/init.js CHANGED
@@ -121,7 +121,7 @@ export async function runInit({ key } = {}) {
121
121
  }
122
122
 
123
123
  console.log('\n Your payments are now protected.');
124
- console.log(' Dashboard → https://dashboard.troxy.ai\n');
124
+ console.log(' Dashboard → https://dash.troxy.io\n');
125
125
  }
126
126
 
127
127
  function installService(apiKey, agentName) {
@@ -196,7 +196,7 @@ function mcpEntry(apiKey) {
196
196
  return {
197
197
  troxy: {
198
198
  command: 'npx',
199
- args: ['troxy', 'mcp'],
199
+ args: ['troxy-cli', 'mcp'],
200
200
  env: { TROXY_API_KEY: apiKey },
201
201
  },
202
202
  };