@thoughtfree/mcp-server 0.2.0 → 0.2.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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10,7 +10,7 @@ import { ThoughtFreeClient } from './client.js';
|
|
|
10
10
|
import { registerAllMcpCapabilities } from './register.js';
|
|
11
11
|
export async function main() {
|
|
12
12
|
const apiKey = process.env.THOUGHTFREE_API_KEY;
|
|
13
|
-
const apiUrl = process.env.THOUGHTFREE_API_URL || 'https://thoughtfree.io';
|
|
13
|
+
const apiUrl = process.env.THOUGHTFREE_API_URL || 'https://app.thoughtfree.io';
|
|
14
14
|
if (!apiKey) {
|
|
15
15
|
console.error('Error: THOUGHTFREE_API_KEY environment variable is required.');
|
|
16
16
|
console.error('Create an API key at: ThoughtFree > Settings > API Keys');
|