chuk-mcp 0.1.0__tar.gz

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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: chuk-mcp
3
+ Version: 0.1.0
4
+ Summary: Model Context Provider Client
5
+ Author-email: Chris Hay <chrishayuk@googlemail.com>
6
+ License-Expression: MIT
7
+ Keywords: llm,openai,claude,mcp,client
8
+ Requires-Python: >=3.12
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: anyio>=4.6.2.post1
11
+ Requires-Dist: pydantic>=2.11.1
12
+ Requires-Dist: requests>=2.32.3
13
+
14
+ # chuk-mcp
15
+
16
+ Model Context Provider Client
@@ -0,0 +1,3 @@
1
+ # chuk-mcp
2
+
3
+ Model Context Provider Client
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: chuk-mcp
3
+ Version: 0.1.0
4
+ Summary: Model Context Provider Client
5
+ Author-email: Chris Hay <chrishayuk@googlemail.com>
6
+ License-Expression: MIT
7
+ Keywords: llm,openai,claude,mcp,client
8
+ Requires-Python: >=3.12
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: anyio>=4.6.2.post1
11
+ Requires-Dist: pydantic>=2.11.1
12
+ Requires-Dist: requests>=2.32.3
13
+
14
+ # chuk-mcp
15
+
16
+ Model Context Provider Client
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ chuk_mcp.egg-info/PKG-INFO
4
+ chuk_mcp.egg-info/SOURCES.txt
5
+ chuk_mcp.egg-info/dependency_links.txt
6
+ chuk_mcp.egg-info/requires.txt
7
+ chuk_mcp.egg-info/top_level.txt
8
+ mcp_client/__init__.py
@@ -0,0 +1,3 @@
1
+ anyio>=4.6.2.post1
2
+ pydantic>=2.11.1
3
+ requests>=2.32.3
@@ -0,0 +1 @@
1
+ mcp_client
File without changes
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "chuk-mcp"
7
+ version = "0.1.0"
8
+ description = "Model Context Provider Client"
9
+ requires-python = ">=3.12"
10
+ readme = "README.md"
11
+ authors = [
12
+ {name = "Chris Hay", email = "chrishayuk@googlemail.com"}
13
+ ]
14
+ keywords = ["llm", "openai", "claude", "mcp", "client"]
15
+ license = "MIT"
16
+ dependencies = [
17
+ "anyio>=4.6.2.post1",
18
+ "pydantic>=2.11.1",
19
+ "requests>=2.32.3",
20
+ ]
21
+
22
+ [tool.setuptools]
23
+ packages = ["mcp_client"]
24
+
25
+ [dependency-groups]
26
+ dev = [
27
+ "pytest>=8.3.5",
28
+ "pytest-asyncio>=0.26.0",
29
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+