nvidia-nat-mcp 1.4.0a20260105__py3-none-any.whl → 1.4.0a20260117__py3-none-any.whl

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.

Potentially problematic release.


This version of nvidia-nat-mcp might be problematic. Click here for more details.

Files changed (26) hide show
  1. nat/plugins/mcp/auth/token_storage.py +1 -1
  2. nat/plugins/mcp/cli/__init__.py +15 -0
  3. nat/plugins/mcp/cli/commands.py +1055 -0
  4. nat/plugins/mcp/client/__init__.py +15 -0
  5. nat/plugins/mcp/{client_config.py → client/client_config.py} +23 -8
  6. nat/plugins/mcp/{client_impl.py → client/client_impl.py} +218 -50
  7. nat/plugins/mcp/register.py +4 -3
  8. nat/plugins/mcp/server/__init__.py +15 -0
  9. nat/plugins/mcp/server/front_end_config.py +109 -0
  10. nat/plugins/mcp/server/front_end_plugin.py +155 -0
  11. nat/plugins/mcp/server/front_end_plugin_worker.py +415 -0
  12. nat/plugins/mcp/server/introspection_token_verifier.py +72 -0
  13. nat/plugins/mcp/server/memory_profiler.py +320 -0
  14. nat/plugins/mcp/server/register_frontend.py +27 -0
  15. nat/plugins/mcp/server/tool_converter.py +290 -0
  16. {nvidia_nat_mcp-1.4.0a20260105.dist-info → nvidia_nat_mcp-1.4.0a20260117.dist-info}/METADATA +3 -3
  17. nvidia_nat_mcp-1.4.0a20260117.dist-info/RECORD +37 -0
  18. nvidia_nat_mcp-1.4.0a20260117.dist-info/entry_points.txt +9 -0
  19. nat/plugins/mcp/tool.py +0 -138
  20. nvidia_nat_mcp-1.4.0a20260105.dist-info/RECORD +0 -27
  21. nvidia_nat_mcp-1.4.0a20260105.dist-info/entry_points.txt +0 -3
  22. /nat/plugins/mcp/{client_base.py → client/client_base.py} +0 -0
  23. {nvidia_nat_mcp-1.4.0a20260105.dist-info → nvidia_nat_mcp-1.4.0a20260117.dist-info}/WHEEL +0 -0
  24. {nvidia_nat_mcp-1.4.0a20260105.dist-info → nvidia_nat_mcp-1.4.0a20260117.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
  25. {nvidia_nat_mcp-1.4.0a20260105.dist-info → nvidia_nat_mcp-1.4.0a20260117.dist-info}/licenses/LICENSE.md +0 -0
  26. {nvidia_nat_mcp-1.4.0a20260105.dist-info → nvidia_nat_mcp-1.4.0a20260117.dist-info}/top_level.txt +0 -0
@@ -206,7 +206,7 @@ class ObjectStoreTokenStorage(TokenStorageBase):
206
206
 
207
207
  class InMemoryTokenStorage(TokenStorageBase):
208
208
  """
209
- In-memory token storage using NeMo Agent toolkit's built-in object store.
209
+ In-memory token storage using the built-in object store provided by the NeMo Agent toolkit.
210
210
 
211
211
  This implementation uses the in-memory object store for token persistence,
212
212
  which provides a secure default option that doesn't require external storage
@@ -0,0 +1,15 @@
1
+ # SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ """MCP CLI commands."""