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.
- chuk_mcp-0.1.0/PKG-INFO +16 -0
- chuk_mcp-0.1.0/README.md +3 -0
- chuk_mcp-0.1.0/chuk_mcp.egg-info/PKG-INFO +16 -0
- chuk_mcp-0.1.0/chuk_mcp.egg-info/SOURCES.txt +8 -0
- chuk_mcp-0.1.0/chuk_mcp.egg-info/dependency_links.txt +1 -0
- chuk_mcp-0.1.0/chuk_mcp.egg-info/requires.txt +3 -0
- chuk_mcp-0.1.0/chuk_mcp.egg-info/top_level.txt +1 -0
- chuk_mcp-0.1.0/mcp_client/__init__.py +0 -0
- chuk_mcp-0.1.0/pyproject.toml +29 -0
- chuk_mcp-0.1.0/setup.cfg +4 -0
chuk_mcp-0.1.0/PKG-INFO
ADDED
|
@@ -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
|
chuk_mcp-0.1.0/README.md
ADDED
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -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
|
+
]
|
chuk_mcp-0.1.0/setup.cfg
ADDED