lantern-connect 0.1.1 → 0.1.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
@@ -32,7 +32,7 @@ lantern-connect --lantern-url https://your-lantern.com --mcp-url https://api.you
32
32
 
33
33
  | Option | Description | Default |
34
34
  |--------|-------------|---------|
35
- | `--mcp-url <url>` | MCP server URL | `https://api.onlantern.com/mcp` |
35
+ | `--mcp-url <url>` | MCP server URL | `https://mcp.onlantern.com/mcp` |
36
36
  | `--lantern-url <url>` | Lantern web URL for authentication | `https://onlantern.com` |
37
37
  | `--help, -h` | Show help message | |
38
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lantern-connect",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "CLI installer to connect AI tools (Claude, Gemini, Cursor) to Lantern",
5
5
  "type": "module",
6
6
  "bin": {
package/src/auth.js CHANGED
@@ -4,7 +4,7 @@ import open from 'open'
4
4
 
5
5
  const CALLBACK_PORT = 8765
6
6
  const DEFAULT_LANTERN_URL = process.env.LANTERN_URL || 'https://onlantern.com'
7
- const DEFAULT_MCP_URL = process.env.MCP_URL || 'https://api.onlantern.com/mcp'
7
+ const DEFAULT_MCP_URL = process.env.MCP_URL || 'https://mcp.onlantern.com/mcp'
8
8
 
9
9
  function createSuccessHtml(email) {
10
10
  return `
package/src/index.js CHANGED
@@ -31,7 +31,7 @@ function parseArgs() {
31
31
  Usage: lantern-connect [options]
32
32
 
33
33
  Options:
34
- --mcp-url <url> MCP server URL (default: https://api.onlantern.com/mcp)
34
+ --mcp-url <url> MCP server URL (default: https://mcp.onlantern.com/mcp)
35
35
  --lantern-url <url> Lantern web URL (default: https://onlantern.com)
36
36
  --help, -h Show this help message
37
37
  `)