@nestr/mcp 0.1.73 → 0.1.89

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.
Files changed (45) hide show
  1. package/build/api/client.d.ts +30 -2
  2. package/build/api/client.d.ts.map +1 -1
  3. package/build/api/client.js +38 -3
  4. package/build/api/client.js.map +1 -1
  5. package/build/help/articles.d.ts +146 -0
  6. package/build/help/articles.d.ts.map +1 -0
  7. package/build/help/articles.js +574 -0
  8. package/build/help/articles.js.map +1 -0
  9. package/build/help/cross-links.d.ts +21 -0
  10. package/build/help/cross-links.d.ts.map +1 -0
  11. package/build/help/cross-links.js +61 -0
  12. package/build/help/cross-links.js.map +1 -0
  13. package/build/help/topics.d.ts.map +1 -1
  14. package/build/help/topics.js +312 -12
  15. package/build/help/topics.js.map +1 -1
  16. package/build/http.d.ts +4 -13
  17. package/build/http.d.ts.map +1 -1
  18. package/build/http.js +341 -89
  19. package/build/http.js.map +1 -1
  20. package/build/oauth/client-info.d.ts +58 -0
  21. package/build/oauth/client-info.d.ts.map +1 -0
  22. package/build/oauth/client-info.js +68 -0
  23. package/build/oauth/client-info.js.map +1 -0
  24. package/build/oauth/config.d.ts +19 -0
  25. package/build/oauth/config.d.ts.map +1 -1
  26. package/build/oauth/config.js +12 -0
  27. package/build/oauth/config.js.map +1 -1
  28. package/build/server.d.ts +7 -0
  29. package/build/server.d.ts.map +1 -1
  30. package/build/server.js +23 -4
  31. package/build/server.js.map +1 -1
  32. package/build/skills/tension-processing.d.ts.map +1 -1
  33. package/build/skills/tension-processing.js +11 -1
  34. package/build/skills/tension-processing.js.map +1 -1
  35. package/build/tools/index.d.ts +493 -13
  36. package/build/tools/index.d.ts.map +1 -1
  37. package/build/tools/index.js +509 -58
  38. package/build/tools/index.js.map +1 -1
  39. package/build/tools/validation.d.ts +42 -0
  40. package/build/tools/validation.d.ts.map +1 -0
  41. package/build/tools/validation.js +97 -0
  42. package/build/tools/validation.js.map +1 -0
  43. package/package.json +2 -1
  44. package/web/index.html +25 -0
  45. package/web/styles.css +62 -0
package/web/index.html CHANGED
@@ -384,6 +384,12 @@
384
384
  <p class="tip" style="margin-bottom: 0;">Already set up Nestr as a <strong>Claude.ai connector</strong>? You can reuse it in Claude Code by enabling the flag:<br>
385
385
  <code>claude config set --global tengu_claudeai_mcp_connectors true</code><br>
386
386
  This makes all your Claude.ai connectors available in Claude Code &mdash; no separate MCP setup needed.</p>
387
+ <div class="cli-note">
388
+ <p>Prefer working in the terminal? <a href="https://github.com/nestr-dev/nestr-cli" target="_blank"><code>nestr-cli</code></a> is a complementary option for command-line and agent workflows &mdash; install it and drop ready-made Nestr skills straight into Claude Code:</p>
389
+ <pre><code>brew install nestr-dev/tap/nestr-cli <span class="cli-comment"># install the CLI</span>
390
+ npx skills add nestr-dev/nestr-cli <span class="cli-comment"># add the agent skills</span></code></pre>
391
+ <p style="margin-bottom: 0;"><a href="https://github.com/nestr-dev/nestr-cli" target="_blank">Explore nestr-cli &rarr;</a></p>
392
+ </div>
387
393
  </div>
388
394
 
389
395
  <div class="tab-content" id="cursor">
@@ -523,6 +529,7 @@
523
529
 
524
530
  <div class="tab-content" id="copilot-studio">
525
531
  <p class="tip" style="margin-bottom: 16px;">Works with <strong>Microsoft Copilot Studio</strong> agents and <strong>Microsoft 365 Copilot</strong> declarative agents.</p>
532
+ <p class="warning" style="margin-bottom: 16px;"><strong>Keep the Server description under 500 characters.</strong> Copilot Studio's connector backend truncates longer descriptions and surfaces a confusing SQL error (<code>String or binary data would be truncated in table '{0}', column '{1}'</code>) instead of a clear validation message. If a previous save failed with that error, also delete the half-created connector before retrying — Copilot Studio leaves a stub behind that triggers a "display name already exists" error on the next attempt.</p>
526
533
 
527
534
  <div class="config-block hosted oauth active">
528
535
  <div class="quickstart-box">
@@ -974,6 +981,24 @@
974
981
  </ul>
975
982
  </div>
976
983
  </div>
984
+
985
+ <div class="cli-cta-box">
986
+ <div class="cli-cta-content">
987
+ <span class="cli-cta-eyebrow">Bonus &mdash; prefer the terminal?</span>
988
+ <h3>Add the Nestr CLI</h3>
989
+ <p>
990
+ <code>nestr-cli</code> brings your whole Nestr workspace to the terminal &mdash;
991
+ great for quick actions, automation, and AI coding agents.
992
+ </p>
993
+ <pre><code>brew install nestr-dev/tap/nestr-cli <span class="cli-comment"># install the CLI</span>
994
+ npx skills add nestr-dev/nestr-cli <span class="cli-comment"># add the agent skills</span></code></pre>
995
+ <p class="cli-cta-note">
996
+ One Homebrew command to install, one more to drop ready-made Nestr skills into
997
+ Claude Code, Cursor, or Copilot.
998
+ </p>
999
+ <a href="https://github.com/nestr-dev/nestr-cli" target="_blank" class="btn primary">Explore nestr-cli &rarr;</a>
1000
+ </div>
1001
+ </div>
977
1002
  </div>
978
1003
  </section>
979
1004
 
package/web/styles.css CHANGED
@@ -680,6 +680,68 @@ p code, li code {
680
680
  }
681
681
 
682
682
  /* Tools */
683
+ /* CLI call-to-action — sits inside the Setup section as a bonus step,
684
+ matching the width and card treatment of the numbered steps. */
685
+ .cli-cta-box {
686
+ background: linear-gradient(135deg, #f0f0ff 0%, #fff 100%);
687
+ border: 2px solid var(--primary);
688
+ border-radius: 12px;
689
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
690
+ padding: 32px;
691
+ text-align: center;
692
+ }
693
+
694
+ .cli-cta-eyebrow {
695
+ display: inline-block;
696
+ margin-bottom: 8px;
697
+ font-size: 0.8rem;
698
+ font-weight: 600;
699
+ letter-spacing: 0.04em;
700
+ text-transform: uppercase;
701
+ color: var(--primary-dark);
702
+ }
703
+
704
+ .cli-cta-box h3 {
705
+ margin-bottom: 12px;
706
+ }
707
+
708
+ .cli-cta-content > p {
709
+ color: var(--text-muted);
710
+ max-width: 720px;
711
+ margin: 0 auto 16px;
712
+ }
713
+
714
+ .cli-cta-box pre {
715
+ max-width: 620px;
716
+ margin: 16px auto;
717
+ text-align: left;
718
+ }
719
+
720
+ .cli-comment {
721
+ color: #94a3b8;
722
+ }
723
+
724
+ .cli-cta-note {
725
+ font-size: 0.95rem;
726
+ }
727
+
728
+ .cli-cta-box .btn {
729
+ margin-top: 8px;
730
+ }
731
+
732
+ /* CLI note inside the Claude Code setup tab */
733
+ .cli-note {
734
+ margin-top: 16px;
735
+ padding-top: 16px;
736
+ border-top: 1px solid var(--border);
737
+ font-size: 0.9rem;
738
+ color: var(--text-muted);
739
+ }
740
+
741
+ .cli-note pre {
742
+ margin: 12px 0;
743
+ }
744
+
683
745
  .tools {
684
746
  padding: 60px 0;
685
747
  background: var(--secondary);