mcpreg-cli 0.1.1__tar.gz → 0.1.2__tar.gz

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 (23) hide show
  1. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/PKG-INFO +3 -3
  2. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/README.md +2 -2
  3. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/pyproject.toml +1 -1
  4. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg/__init__.py +1 -1
  5. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg_cli.egg-info/PKG-INFO +3 -3
  6. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/LICENSE +0 -0
  7. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/setup.cfg +0 -0
  8. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg/__main__.py +0 -0
  9. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg/cli.py +0 -0
  10. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg/core.py +0 -0
  11. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg/py.typed +0 -0
  12. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg/wrapper.py +0 -0
  13. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg_cli.egg-info/SOURCES.txt +0 -0
  14. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg_cli.egg-info/dependency_links.txt +0 -0
  15. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg_cli.egg-info/entry_points.txt +0 -0
  16. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg_cli.egg-info/requires.txt +0 -0
  17. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/src/mcpreg_cli.egg-info/top_level.txt +0 -0
  18. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/tests/test_cli.py +0 -0
  19. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/tests/test_cli2.py +0 -0
  20. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/tests/test_core.py +0 -0
  21. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/tests/test_edge_cases.py +0 -0
  22. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/tests/test_extended.py +0 -0
  23. {mcpreg_cli-0.1.1 → mcpreg_cli-0.1.2}/tests/test_stdio.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcpreg-cli
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: MCP tool registry introspection server — enumerate tools from any MCP server via stdio
5
5
  Author-email: Repo Factory <noreply@example.com>
6
6
  License: MIT
@@ -27,7 +27,7 @@ Dynamic: license-file
27
27
 
28
28
  # mcpreg
29
29
 
30
- [![PyPI](https://img.shields.io/badge/pypi-mcpreg%200.1.0-blue)](https://pypi.org/project/mcpreg)
30
+ [![PyPI](https://img.shields.io/badge/pypi-mcpreg--cli%200.1.1-blue)](https://pypi.org/project/mcpreg-cli)
31
31
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
32
32
  [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/)
33
33
  [![Tests](https://img.shields.io/badge/tests-135%20passing-brightgreen.svg)](tests/)
@@ -178,7 +178,7 @@ options:
178
178
  Install from PyPI:
179
179
 
180
180
  ```bash
181
- pip install mcpreg
181
+ pip install mcpreg-cli
182
182
  ```
183
183
 
184
184
  Or clone and `pip install -e .` for development.
@@ -1,6 +1,6 @@
1
1
  # mcpreg
2
2
 
3
- [![PyPI](https://img.shields.io/badge/pypi-mcpreg%200.1.0-blue)](https://pypi.org/project/mcpreg)
3
+ [![PyPI](https://img.shields.io/badge/pypi-mcpreg--cli%200.1.1-blue)](https://pypi.org/project/mcpreg-cli)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
5
5
  [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/)
6
6
  [![Tests](https://img.shields.io/badge/tests-135%20passing-brightgreen.svg)](tests/)
@@ -151,7 +151,7 @@ options:
151
151
  Install from PyPI:
152
152
 
153
153
  ```bash
154
- pip install mcpreg
154
+ pip install mcpreg-cli
155
155
  ```
156
156
 
157
157
  Or clone and `pip install -e .` for development.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mcpreg-cli"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "MCP tool registry introspection server — enumerate tools from any MCP server via stdio"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -38,4 +38,4 @@ __all__ = [
38
38
  "query_tools_of",
39
39
  "wrap",
40
40
  ]
41
- __version__ = "0.1.1"
41
+ __version__ = "0.1.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcpreg-cli
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: MCP tool registry introspection server — enumerate tools from any MCP server via stdio
5
5
  Author-email: Repo Factory <noreply@example.com>
6
6
  License: MIT
@@ -27,7 +27,7 @@ Dynamic: license-file
27
27
 
28
28
  # mcpreg
29
29
 
30
- [![PyPI](https://img.shields.io/badge/pypi-mcpreg%200.1.0-blue)](https://pypi.org/project/mcpreg)
30
+ [![PyPI](https://img.shields.io/badge/pypi-mcpreg--cli%200.1.1-blue)](https://pypi.org/project/mcpreg-cli)
31
31
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
32
32
  [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/)
33
33
  [![Tests](https://img.shields.io/badge/tests-135%20passing-brightgreen.svg)](tests/)
@@ -178,7 +178,7 @@ options:
178
178
  Install from PyPI:
179
179
 
180
180
  ```bash
181
- pip install mcpreg
181
+ pip install mcpreg-cli
182
182
  ```
183
183
 
184
184
  Or clone and `pip install -e .` for development.
File without changes
File without changes
File without changes
File without changes