From 4421bafb2aaad82f56f4ef338f97b7690dd156ac Mon Sep 17 00:00:00 2001 From: zzstoatzz Date: Sun, 22 Jun 2025 18:41:30 -0500 Subject: [PATCH] Add script entry point for atproto-mcp command --- examples/atproto_mcp/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/atproto_mcp/pyproject.toml b/examples/atproto_mcp/pyproject.toml index 2d48d71bb..9f0785940 100644 --- a/examples/atproto_mcp/pyproject.toml +++ b/examples/atproto_mcp/pyproject.toml @@ -12,6 +12,9 @@ dependencies = [ "websockets>=15.0.1", ] +[project.scripts] +atproto-mcp = "atproto_mcp.__main__:main" + [build-system] requires = ["hatchling"] build-backend = "hatchling.build"