This commit is contained in:
2025-05-22 23:53:24 +09:00
parent f97da41595
commit ef6605ff64
4 changed files with 17 additions and 3 deletions

13
mcp/scripts/server.py Normal file
View File

@ -0,0 +1,13 @@
# server.py
from fastmcp import FastMCP
mcp = FastMCP(
name="aigpt-agent",
host="127.0.0.1",
port=5000,
timeout=30
)
if __name__ == "__main__":
print("Starting MCP server...")
mcp.run()