Add documentation

This commit is contained in:
Jeremiah Lowin 2025-05-07 22:22:56 -04:00
commit 108ae4a471
11 changed files with 292 additions and 163 deletions

12
test.py Normal file
View file

@ -0,0 +1,12 @@
from fastmcp import FastMCP
mcp = FastMCP()
if __name__ == "__main__":
mcp.run(
transport="streamable-http",
host="127.0.0.1",
port=4200,
path="/my-custom-path/",
log_level="debug",
)