This commit is contained in:
Timothy Jaeryang Baek 2025-03-30 03:03:53 -07:00
commit 4b5c62c474
3 changed files with 13 additions and 0 deletions

0
README.md Normal file
View File

7
pyproject.toml Normal file
View File

@ -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 = []

6
src/mcpo/main.py Normal file
View File

@ -0,0 +1,6 @@
def main():
print("Hello from mcpo!")
if __name__ == "__main__":
main()