@nextnext/mcp-server 0.1.4 → 0.1.6
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 +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -102978,7 +102978,7 @@ var walletTools = [
|
|
|
102978
102978
|
];
|
|
102979
102979
|
|
|
102980
102980
|
// src/tools/index.ts
|
|
102981
|
-
var RELAY_URL = process.env.NOSTR_RELAY_URL || "
|
|
102981
|
+
var RELAY_URL = process.env.NOSTR_RELAY_URL || "wss://relay.nextnext.dev";
|
|
102982
102982
|
var FACTORY_API_URL = process.env.FACTORY_API_URL || "https://factory-api-842534750338.us-central1.run.app";
|
|
102983
102983
|
var nostrClient = null;
|
|
102984
102984
|
function getNostrClient() {
|
|
@@ -109167,6 +109167,7 @@ async function main() {
|
|
|
109167
109167
|
const configLogger = createLogger(config3.settings?.logLevel || "info", useStderrOnly);
|
|
109168
109168
|
const gateway = new GatewayServer(config3, configLogger);
|
|
109169
109169
|
await gateway.start();
|
|
109170
|
+
gateway.setSessionId("stdio-local-session");
|
|
109170
109171
|
const transport = new StdioServerTransport;
|
|
109171
109172
|
await gateway.connect(transport);
|
|
109172
109173
|
configLogger.info("MCP Gateway is now serving on stdio");
|