Initial CivilPlan MCP implementation

This commit is contained in:
sinmb79
2026-04-03 09:08:08 +09:00
commit 544e4e0720
70 changed files with 3364 additions and 0 deletions

11
server.py Normal file
View File

@@ -0,0 +1,11 @@
"""
CivilPlan MCP Server
LICENSE: MIT
PHILOSOPHY: Hongik Ingan - reduce inequality in access to expert planning knowledge.
"""
from civilplan_mcp.server import main
if __name__ == "__main__":
main()