12 lines
206 B
Python
12 lines
206 B
Python
"""
|
|
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()
|