@lanten-ai/mcp-server 0.1.0 → 0.1.1
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/build/index.js +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -11,7 +11,7 @@ if (!apiKey) {
|
|
|
11
11
|
console.error('Get an API key from your Lanten dashboard: Settings → Developers');
|
|
12
12
|
process.exit(1);
|
|
13
13
|
}
|
|
14
|
-
const baseUrl = (process.env.LANTEN_API_URL ?? 'https://app.lanten.
|
|
14
|
+
const baseUrl = (process.env.LANTEN_API_URL ?? 'https://app.lanten.ai/api/open/v1').replace(/\/$/, '');
|
|
15
15
|
const client = new LantenClient(baseUrl, apiKey);
|
|
16
16
|
const server = new McpServer({
|
|
17
17
|
name: 'lanten',
|
package/package.json
CHANGED