Skip to content

Commit 959e7a7

Browse files
committed
fix: entry point should use run() not async main()
The entry point was pointing to async main() which cannot be called directly. Changed to run() which properly wraps main() with asyncio.run(). Bump version to 0.1.3
1 parent d309b8d commit 959e7a7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "ccontext-mcp"
7-
version = "0.1.2"
7+
version = "0.1.3"
88
description = "MCP server for AI agents to manage project execution context"
99
readme = "README.md"
1010
license = "MIT"
@@ -35,7 +35,7 @@ dev = [
3535
]
3636

3737
[project.scripts]
38-
ccontext-mcp = "ccontext_mcp.server:main"
38+
ccontext-mcp = "ccontext_mcp.server:run"
3939

4040
[tool.hatch.build.targets.wheel]
4141
packages = ["src/ccontext_mcp"]

0 commit comments

Comments
 (0)