neutron-mcp 1.0.3 → 1.0.4

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
@@ -240,7 +240,7 @@ Once configured, just ask your AI assistant naturally:
240
240
  |----------|----------|-------------|
241
241
  | `NEUTRON_API_KEY` | Yes | Your Neutron API key |
242
242
  | `NEUTRON_API_SECRET` | Yes | Your Neutron API secret |
243
- | `NEUTRON_API_URL` | No | API URL (defaults to `https://enapi.npay.dev`) |
243
+ | `NEUTRON_API_URL` | No | API URL (defaults to `https://enapi.npay.live`) |
244
244
 
245
245
  ---
246
246
 
package/dist/index.js CHANGED
@@ -60,7 +60,7 @@ const UpdateWebhookSchema = z.object({
60
60
  });
61
61
  // Initialize Neutron client
62
62
  function createClient() {
63
- const apiUrl = process.env.NEUTRON_API_URL || "https://enapi.npay.dev";
63
+ const apiUrl = process.env.NEUTRON_API_URL || "https://enapi.npay.live";
64
64
  const apiKey = process.env.NEUTRON_API_KEY;
65
65
  const apiSecret = process.env.NEUTRON_API_SECRET;
66
66
  if (!apiKey || !apiSecret) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neutron-mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "MCP server for Neutron - Lightning payments, Bitcoin, USDT, and fiat transactions for AI-powered applications",
5
5
  "main": "dist/index.js",
6
6
  "bin": {