From 4b5c62c474a208c0624d659e509de000f9e1975e Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 30 Mar 2025 03:03:53 -0700 Subject: [PATCH] init --- README.md | 0 pyproject.toml | 7 +++++++ src/mcpo/main.py | 6 ++++++ 3 files changed, 13 insertions(+) create mode 100644 README.md create mode 100644 pyproject.toml create mode 100644 src/mcpo/main.py 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()