@i18n-agent/mcp-client 1.16.1 → 1.16.2

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.
package/README.md CHANGED
@@ -234,7 +234,7 @@ Create `.cursor/mcp_settings.json` or `.vscode/mcp_settings.json`:
234
234
  - **Automatic Polling**: Client automatically polls for job completion
235
235
 
236
236
  ### Credit Management
237
- - **Cost**: 0.01 credits per word
237
+ - **Cost**: 1 credit per word ($0.01/word)
238
238
  - **Monitoring**: Check balance before large translations
239
239
  - **Estimates**: Get word count estimates before translation
240
240
 
@@ -325,7 +325,7 @@ export I18N_AGENT_API_KEY=your-key-here
325
325
 
326
326
  ## 📊 Pricing
327
327
 
328
- - **Pay-per-use**: 0.01 credits per word
328
+ - **Pay-per-use**: 1 credit per word ($0.01/word)
329
329
  - **No subscriptions**: Only pay for what you translate
330
330
  - **Bulk discounts**: Available for enterprise usage
331
331
  - **Free tier**: New accounts get starter credits
package/i18n-agent.js CHANGED
@@ -341,7 +341,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
341
341
  },
342
342
  {
343
343
  name: 'get_credits',
344
- description: 'Get remaining credits for the user and approximate word count available at 0.01 credits per word',
344
+ description: 'Get remaining credits for the user and approximate word count available at 1 credit per word ($0.01/word)',
345
345
  inputSchema: {
346
346
  type: 'object',
347
347
  properties: {
@@ -1364,7 +1364,7 @@ async function handleGetCredits(args) {
1364
1364
  text: `💰 **Credits Information**\n\n` +
1365
1365
  `💳 **Credits Remaining**: ${parsed.credits || 'N/A'}\n` +
1366
1366
  `📝 **Approximate Words Available**: ${approximateWordsAvailable.toLocaleString()}\n` +
1367
- `💵 **Cost per Word**: 0.01 credits\n` +
1367
+ `💵 **Cost per Word**: 1 credit ($0.01)\n` +
1368
1368
  `⏰ **Last Updated**: ${new Date().toLocaleString()}\n\n` +
1369
1369
  `Note: Word count is approximate and may vary based on actual content complexity and translation requirements.`,
1370
1370
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@i18n-agent/mcp-client",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "description": "🌍 i18n-agent MCP Client - 48 languages, AI-powered translation for Claude, Claude Code, Cursor, VS Code, Codex. Get API key at https://app.i18nagent.ai",
5
5
  "main": "i18n-agent.js",
6
6
  "bin": "i18n-agent.js",