kl-mcp-client 2.0.1__tar.gz → 2.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kl-mcp-client
3
- Version: 2.0.1
3
+ Version: 2.0.3
4
4
  Summary: MCP Client for Python
5
5
  Author-email: Kyle <hngan.it@gmail.com>
6
6
  License: MIT
@@ -23,7 +23,7 @@ class MCPClient:
23
23
  headers: Optional[Dict[str, str]] = None,
24
24
  timeout: int = 30,
25
25
  retries: int = 1,
26
- proxies: Optional[Dict[str, str]] = None,
26
+ proxies=None,
27
27
  ):
28
28
  """
29
29
  base_url: full MCP HTTP endpoint e.g. http://localhost:3000/mcp
@@ -47,7 +47,7 @@ class MCPClient:
47
47
  self._client = httpx.AsyncClient(
48
48
  headers=self.headers,
49
49
  timeout=httpx.Timeout(self.timeout),
50
- proxies=proxies,
50
+ proxy=proxies,
51
51
  )
52
52
 
53
53
  # local session cache
@@ -22,7 +22,7 @@ class MCPClient:
22
22
  headers: Optional[Dict[str, str]] = None,
23
23
  timeout: int = 30,
24
24
  retries: int = 1,
25
- proxies: Optional[Dict[str, str]] = None,
25
+ proxies=None,
26
26
  ):
27
27
  """
28
28
  base_url: full MCP HTTP endpoint e.g. http://localhost:3000/mcp
@@ -49,7 +49,7 @@ class MCPClient:
49
49
  base_url=self.base_url,
50
50
  headers=self.headers,
51
51
  timeout=httpx.Timeout(self.timeout),
52
- proxies=proxies,
52
+ proxy=proxies,
53
53
  )
54
54
 
55
55
  def close(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kl-mcp-client
3
- Version: 2.0.1
3
+ Version: 2.0.3
4
4
  Summary: MCP Client for Python
5
5
  Author-email: Kyle <hngan.it@gmail.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "kl-mcp-client"
7
- version = "2.0.1"
7
+ version = "2.0.3"
8
8
  description = "MCP Client for Python"
9
9
  dependencies = [ "requests>=2.32.5", "httpx>=0.28.1",]
10
10
  readme = "README.md"
File without changes
File without changes