mcp2cli 0.0.1__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.
mcp2cli-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: mcp2cli
3
+ Version: 0.0.1
4
+ Summary: Turn any MCP server or OpenAPI spec into a CLI
5
+ Author: Stephan Fitzpatrick
6
+ Author-email: Stephan Fitzpatrick <stephan@knowsuchagency.com>
7
+ License-Expression: MIT
8
+ Requires-Dist: httpx
9
+ Requires-Dist: pyyaml
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+
File without changes
@@ -0,0 +1,21 @@
1
+ [project]
2
+ name = "mcp2cli"
3
+ version = "0.0.1"
4
+ description = "Turn any MCP server or OpenAPI spec into a CLI"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ authors = [
8
+ { name = "Stephan Fitzpatrick", email = "stephan@knowsuchagency.com" }
9
+ ]
10
+ requires-python = ">=3.10"
11
+ dependencies = [
12
+ "httpx",
13
+ "pyyaml",
14
+ ]
15
+
16
+ [project.scripts]
17
+ mcp2cli = "mcp2cli:main"
18
+
19
+ [build-system]
20
+ requires = ["uv_build>=0.9.5,<0.10.0"]
21
+ build-backend = "uv_build"
@@ -0,0 +1,7 @@
1
+ """mcp2cli — Turn any MCP server or OpenAPI spec into a CLI."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+
6
+ def main():
7
+ print("mcp2cli — coming soon. https://github.com/knowsuchagency/mcp2cli")
File without changes