@agentic-survey/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/dist/config.d.ts +1 -1
- package/dist/config.js +1 -1
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export interface StoredConfig {
|
|
|
10
10
|
/** Page-service base URL; defaults to the author's hosted instance. */
|
|
11
11
|
pageEndpoint?: string;
|
|
12
12
|
}
|
|
13
|
-
export declare const DEFAULT_PAGE_ENDPOINT = "https://
|
|
13
|
+
export declare const DEFAULT_PAGE_ENDPOINT = "https://www.mcpsurveys.com";
|
|
14
14
|
export declare function configPath(): string;
|
|
15
15
|
/** Derive the Supabase project ref from the project URL. */
|
|
16
16
|
export declare function projectRefFromUrl(url: string): string | undefined;
|
package/dist/config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { readFileSync, writeFileSync, mkdirSync, existsSync, chmodSync } from 'node:fs';
|
|
2
2
|
import { homedir } from 'node:os';
|
|
3
3
|
import { dirname, join } from 'node:path';
|
|
4
|
-
export const DEFAULT_PAGE_ENDPOINT = 'https://
|
|
4
|
+
export const DEFAULT_PAGE_ENDPOINT = 'https://www.mcpsurveys.com';
|
|
5
5
|
export function configPath() {
|
|
6
6
|
const base = process.env.AGENTIC_SURVEY_CONFIG ??
|
|
7
7
|
join(process.env.XDG_CONFIG_HOME ?? join(homedir(), '.config'), 'agentic-survey', 'config.json');
|
package/package.json
CHANGED