initial scaffolding

This commit is contained in:
Taylor Wilsdon
2025-04-27 12:34:22 -04:00
commit ca86d591d4
12 changed files with 1932 additions and 0 deletions

6
main.py Normal file
View File

@@ -0,0 +1,6 @@
import mcp
from core.server import server
if __name__ == "__main__":
# Run the MCP server using stdio transport
mcp.run(server, transport='stdio')