commit 4b5c62c474a208c0624d659e509de000f9e1975e Author: Timothy Jaeryang Baek Date: Sun Mar 30 03:03:53 2025 -0700 init diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c13db09 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "mcpo" +version = "0.0.1" +description = "A simple, secure MCP-to-OpenAPI proxy server" +readme = "README.md" +requires-python = ">=3.11" +dependencies = [] diff --git a/src/mcpo/main.py b/src/mcpo/main.py new file mode 100644 index 0000000..4cb4b7c --- /dev/null +++ b/src/mcpo/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from mcpo!") + + +if __name__ == "__main__": + main()