@nado-language/mcp 0.1.7 → 0.1.8

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
@@ -163,6 +163,8 @@ For Codex, the command uses the Codex CLI when it is on `PATH`. If the user only
163
163
 
164
164
  Restart Codex Desktop after login completes.
165
165
  If a client was already open, start a new chat/session after restart. Most local MCP clients load tool definitions when the session starts, so a config that was just written may not appear inside an already-running conversation.
166
+ For Codex, confirm the server is active from the chat/TUI with `/mcp`. A server can appear in Settings while still failing to start for the current session.
167
+ On Windows, leave the Codex MCP working directory/cwd empty unless it is an existing absolute path. The Nado server does not need a working directory, and a value such as `~/code` can prevent the stdio process from starting if the client does not expand it.
166
168
 
167
169
  ChatGPT is different: it uses hosted/remote MCP apps configured from ChatGPT Apps settings, not local stdio config files. The local package can prepare local clients such as Codex, Claude Desktop, OpenCode, and generic JSON-based MCP clients.
168
170
 
@@ -30,7 +30,7 @@ const command = process.argv[2] || 'help';
30
30
  const args = process.argv.slice(3);
31
31
 
32
32
  try {
33
- if (command === 'help' || command === '--help' || command === '-h') {
33
+ if (shouldPrintHelp(command, args)) {
34
34
  printHelp();
35
35
  } else if (command === 'version' || command === '--version' || command === '-v') {
36
36
  console.log(packageVersion);
@@ -260,10 +260,12 @@ async function doctor() {
260
260
  console.log('A green local server check only proves the stdio server can list tools; it does not prove an already-open chat loaded them.');
261
261
  console.log('');
262
262
  console.log('If the server check is ok but Nado tools are not visible in the AI app:');
263
- console.log(' 1. Fully quit and restart the desktop app after `nado-mcp connect`.');
264
- console.log(' 2. Start a new chat/session; existing sessions may not reload newly added MCP tools.');
265
- console.log(' 3. Run `nado-mcp status` for auth and `nado-mcp probe list` for local server tools.');
266
- console.log(' 4. If a chat tries local files or Google Drive for "나두/Nado 암기장", that chat did not load the Nado MCP tools.');
263
+ console.log(' 1. In Codex, run `/mcp` in the chat/TUI and confirm nado-language is active, not only listed in Settings.');
264
+ console.log(' 2. Fully quit and restart the desktop app after `nado-mcp connect`.');
265
+ console.log(' 3. Start a new chat/session; existing sessions may not reload newly added MCP tools.');
266
+ console.log(' 4. On Windows, remove Working directory/cwd unless it is an existing absolute path. The Nado server does not need cwd.');
267
+ console.log(' 5. Run `nado-mcp status` for auth and `nado-mcp probe list` for local server tools.');
268
+ console.log(' 6. If a chat tries local files or Google Drive for "나두/Nado 암기장", that chat did not load the Nado MCP tools.');
267
269
  }
268
270
 
269
271
  function printToolProbeSummary() {
@@ -536,6 +538,11 @@ function commandExists(commandName) {
536
538
  return !result.error && result.status === 0;
537
539
  }
538
540
 
541
+ function shouldPrintHelp(currentCommand, currentArgs) {
542
+ if (currentCommand === 'help' || currentCommand === '--help' || currentCommand === '-h') return true;
543
+ return currentArgs.includes('--help') || currentArgs.includes('-h');
544
+ }
545
+
539
546
  function codexDesktopTomlSection() {
540
547
  const spec = stdioServerSpec();
541
548
  return [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nado-language/mcp",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Nado Language MCP server for saving AI-generated English flashcards and practicing saved materials.",
5
5
  "type": "module",
6
6
  "private": false,