mcp-use 1.0.1__tar.gz → 1.0.2__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.

Potentially problematic release.


This version of mcp-use might be problematic. Click here for more details.

Files changed (60) hide show
  1. {mcp_use-1.0.1 → mcp_use-1.0.2}/PKG-INFO +1 -1
  2. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/connectors/http.py +1 -1
  3. {mcp_use-1.0.1 → mcp_use-1.0.2}/pyproject.toml +1 -1
  4. {mcp_use-1.0.1 → mcp_use-1.0.2}/tests/unit/test_http_connector.py +1 -1
  5. {mcp_use-1.0.1 → mcp_use-1.0.2}/.github/workflows/publish.yml +0 -0
  6. {mcp_use-1.0.1 → mcp_use-1.0.2}/.github/workflows/tests.yml +0 -0
  7. {mcp_use-1.0.1 → mcp_use-1.0.2}/.gitignore +0 -0
  8. {mcp_use-1.0.1 → mcp_use-1.0.2}/.pre-commit-config.yaml +0 -0
  9. {mcp_use-1.0.1 → mcp_use-1.0.2}/LICENSE +0 -0
  10. {mcp_use-1.0.1 → mcp_use-1.0.2}/README.md +0 -0
  11. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/README.md +0 -0
  12. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/api-reference/introduction.mdx +0 -0
  13. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/development.mdx +0 -0
  14. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/docs.json +0 -0
  15. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/essentials/configuration.mdx +0 -0
  16. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/essentials/connection-types.mdx +0 -0
  17. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/essentials/llm-integration.mdx +0 -0
  18. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/favicon.svg +0 -0
  19. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/images/hero-dark.png +0 -0
  20. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/images/hero-light.png +0 -0
  21. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/introduction.mdx +0 -0
  22. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/logo/dark.svg +0 -0
  23. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/logo/light.svg +0 -0
  24. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/quickstart.mdx +0 -0
  25. {mcp_use-1.0.1 → mcp_use-1.0.2}/docs/snippets/snippet-intro.mdx +0 -0
  26. {mcp_use-1.0.1 → mcp_use-1.0.2}/examples/airbnb_mcp.json +0 -0
  27. {mcp_use-1.0.1 → mcp_use-1.0.2}/examples/airbnb_use.py +0 -0
  28. {mcp_use-1.0.1 → mcp_use-1.0.2}/examples/blender_use.py +0 -0
  29. {mcp_use-1.0.1 → mcp_use-1.0.2}/examples/browser_mcp.json +0 -0
  30. {mcp_use-1.0.1 → mcp_use-1.0.2}/examples/browser_use.py +0 -0
  31. {mcp_use-1.0.1 → mcp_use-1.0.2}/examples/chat_example.py +0 -0
  32. {mcp_use-1.0.1 → mcp_use-1.0.2}/examples/filesystem_use.py +0 -0
  33. {mcp_use-1.0.1 → mcp_use-1.0.2}/examples/multi_server_example.py +0 -0
  34. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/__init__.py +0 -0
  35. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/agents/__init__.py +0 -0
  36. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/agents/base.py +0 -0
  37. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/agents/langchain_agent.py +0 -0
  38. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/agents/mcpagent.py +0 -0
  39. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/agents/prompts/default.py +0 -0
  40. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/client.py +0 -0
  41. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/config.py +0 -0
  42. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/connectors/__init__.py +0 -0
  43. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/connectors/base.py +0 -0
  44. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/connectors/stdio.py +0 -0
  45. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/connectors/websocket.py +0 -0
  46. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/logging.py +0 -0
  47. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/session.py +0 -0
  48. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/task_managers/__init__.py +0 -0
  49. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/task_managers/base.py +0 -0
  50. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/task_managers/sse.py +0 -0
  51. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/task_managers/stdio.py +0 -0
  52. {mcp_use-1.0.1 → mcp_use-1.0.2}/mcp_use/task_managers/websocket.py +0 -0
  53. {mcp_use-1.0.1 → mcp_use-1.0.2}/pytest.ini +0 -0
  54. {mcp_use-1.0.1 → mcp_use-1.0.2}/static/image.jpg +0 -0
  55. {mcp_use-1.0.1 → mcp_use-1.0.2}/tests/conftest.py +0 -0
  56. {mcp_use-1.0.1 → mcp_use-1.0.2}/tests/unit/test_client.py +0 -0
  57. {mcp_use-1.0.1 → mcp_use-1.0.2}/tests/unit/test_config.py +0 -0
  58. {mcp_use-1.0.1 → mcp_use-1.0.2}/tests/unit/test_logging.py +0 -0
  59. {mcp_use-1.0.1 → mcp_use-1.0.2}/tests/unit/test_session.py +0 -0
  60. {mcp_use-1.0.1 → mcp_use-1.0.2}/tests/unit/test_stdio_connector.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-use
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: MCP Library for LLMs
5
5
  Author-email: Pietro Zullo <pietro.zullo@gmail.com>
6
6
  License: MIT
@@ -54,7 +54,7 @@ class HttpConnector(BaseConnector):
54
54
  logger.info(f"Connecting to MCP implementation via HTTP/SSE: {self.base_url}")
55
55
  try:
56
56
  # Create the SSE connection URL
57
- sse_url = f"{self.base_url}/sse"
57
+ sse_url = f"{self.base_url}"
58
58
 
59
59
  # Create and start the connection manager
60
60
  self._connection_manager = SseConnectionManager(
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mcp-use"
3
- version = "1.0.1"
3
+ version = "1.0.2"
4
4
  description = "MCP Library for LLMs"
5
5
  authors = [
6
6
  {name = "Pietro Zullo", email = "pietro.zullo@gmail.com"}
@@ -111,7 +111,7 @@ class TestHttpConnectorConnection(IsolatedAsyncioTestCase):
111
111
  await self.connector.connect()
112
112
 
113
113
  # Verify connection manager was created and started
114
- mock_cm_class.assert_called_once_with("http://localhost:8000/sse", {}, 5, 300)
114
+ mock_cm_class.assert_called_once_with("http://localhost:8000", {}, 5, 300)
115
115
  mock_cm_instance.start.assert_called_once()
116
116
 
117
117
  # Verify client session was created
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes