mcparmory-github 0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
README.md ADDED
@@ -0,0 +1,5 @@
1
+ # mcparmory-github
2
+
3
+ MCP server for GitHub v3 REST API.
4
+
5
+ Full version coming soon. See [mcparmory.com](https://mcparmory.com)
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: mcparmory-github
3
+ Version: 0.0.1
4
+ Summary: mcparmory: MCP server for GitHub v3 REST API — coming soon.
5
+ Project-URL: Homepage, https://mcparmory.com
6
+ Project-URL: Repository, https://github.com/mcparmory/registry
7
+ License-Expression: MIT
8
+ Requires-Python: >=3.11
@@ -0,0 +1,6 @@
1
+ ./README.md,sha256=DCplGlFXGIKymw5cmoNczN8ZrU013g00X1zqn30GnfE,125
2
+ ./pyproject.toml,sha256=5s-Mx3vpbWxWIVdoNHHqlkbfW4fXlr8DTpDkMREOXTM,405
3
+ ./server.py,sha256=GEUp6E7SIui1g2wDkliOA_WFLlqLD-GVyIfxLq-1wUQ,199
4
+ mcparmory_github-0.0.1.dist-info/METADATA,sha256=y9-i3tMx-uoAdzouR4X2e6TAPV0GK4HaWNFzuuDZyyY,287
5
+ mcparmory_github-0.0.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
6
+ mcparmory_github-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
pyproject.toml ADDED
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "mcparmory-github"
7
+ version = "0.0.1"
8
+ description = "mcparmory: MCP server for GitHub v3 REST API — coming soon."
9
+ license = "MIT"
10
+ requires-python = ">=3.11"
11
+
12
+ [project.urls]
13
+ Homepage = "https://mcparmory.com"
14
+ Repository = "https://github.com/mcparmory/registry"
15
+
16
+ [tool.hatch.build.targets.wheel]
17
+ packages = ["."]
server.py ADDED
@@ -0,0 +1,7 @@
1
+ """MCP server for GitHub v3 REST API — placeholder."""
2
+
3
+ def main() -> None:
4
+ print("mcparmory-github: full server coming soon. See https://mcparmory.com")
5
+
6
+ if __name__ == "__main__":
7
+ main()